equal
deleted
inserted
replaced
14 * Description: Contains common data structures used by WLAN management service. |
14 * Description: Contains common data structures used by WLAN management service. |
15 * |
15 * |
16 */ |
16 */ |
17 |
17 |
18 /* |
18 /* |
19 * %version: 10 % |
19 * %version: 10.1.1 % |
20 */ |
20 */ |
21 |
21 |
22 #ifndef WLANMGMTCOMMON_H |
22 #ifndef WLANMGMTCOMMON_H |
23 #define WLANMGMTCOMMON_H |
23 #define WLANMGMTCOMMON_H |
24 |
24 |
275 TWlanDefaultWepKey iWepDefaultKey; |
275 TWlanDefaultWepKey iWepDefaultKey; |
276 /** WPA preshared key. */ |
276 /** WPA preshared key. */ |
277 TWlanWpaPresharedKey iWpaPreSharedKey; |
277 TWlanWpaPresharedKey iWpaPreSharedKey; |
278 }; |
278 }; |
279 |
279 |
|
280 /** |
|
281 * Data structure for storing IAP availability data. |
|
282 */ |
|
283 struct TWlanIapAvailabilityData |
|
284 { |
|
285 /** |
|
286 * ID of the IAP. |
|
287 */ |
|
288 TUint iIapId; |
|
289 /** |
|
290 * Received Signal Strength Indicator (RSSI) of the strongest |
|
291 * AP in the network. |
|
292 */ |
|
293 TUint iRssi; |
|
294 }; |
|
295 |
280 // CLASS DECLARATION |
296 // CLASS DECLARATION |
281 /** |
297 /** |
282 * Callback interface for WLAN management notifications. |
298 * Callback interface for WLAN management notifications. |
283 * |
299 * |
284 * These virtual methods should be inherited and implemented by the |
300 * These virtual methods should be inherited and implemented by the |