Changes in uspace/lib/ieee80211/include/ieee80211_private.h [a35b458:5a6cc679] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ieee80211/include/ieee80211_private.h
ra35b458 r5a6cc679 231 231 /** Backing DDF device. */ 232 232 ddf_dev_t *ddf_dev; 233 233 234 234 /** Pointer to implemented IEEE 802.11 device operations. */ 235 235 ieee80211_ops_t *ops; 236 236 237 237 /** Pointer to implemented IEEE 802.11 interface operations. */ 238 238 ieee80211_iface_t *iface; 239 239 240 240 /** Pointer to driver specific data. */ 241 241 void *specific; 242 242 243 243 /** Current operating frequency. */ 244 244 uint16_t current_freq; 245 245 246 246 /** Current operating mode. */ 247 247 ieee80211_operating_mode_t current_op_mode; 248 248 249 249 /** Info about BSSID we are connected to. */ 250 250 ieee80211_bssid_info_t bssid_info; 251 251 252 252 /** 253 253 * Flag indicating that data traffic is encrypted by HW key … … 255 255 */ 256 256 bool using_hw_key; 257 257 258 258 /** BSSIDs we listen to. */ 259 259 nic_address_t bssid_mask; 260 260 261 261 /** List of APs in neighborhood. */ 262 262 ieee80211_scan_result_list_t ap_list; 263 263 264 264 /** Current sequence number used in data frames. */ 265 265 uint16_t sequence_number; 266 266 267 267 /** Current authentication phase. */ 268 268 ieee80211_auth_phase_t current_auth_phase; 269 269 270 270 /** Flag indicating whether client wants connect to network. */ 271 271 bool pending_conn_req; 272 272 273 273 /** Scanning guard. */ 274 274 fibril_mutex_t scan_mutex; 275 275 276 276 /** General purpose guard. */ 277 277 fibril_mutex_t gen_mutex; 278 278 279 279 /** General purpose condition variable. */ 280 280 fibril_condvar_t gen_cond; 281 281 282 282 /** Indicates whether device is fully initialized. */ 283 283 bool ready; 284 284 285 285 /** Indicates whether driver has already started. */ 286 286 bool started;
Note:
See TracChangeset
for help on using the changeset viewer.