2012-02-26 10:27:19 -05:00
|
|
|
/*
|
|
|
|
* IEEE 802.11v WNM related functions and structures
|
|
|
|
* Copyright (c) 2011-2012, Qualcomm Atheros, Inc.
|
|
|
|
*
|
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WNM_STA_H
|
|
|
|
#define WNM_STA_H
|
|
|
|
|
2013-05-16 10:48:59 -04:00
|
|
|
struct measurement_pilot {
|
|
|
|
u8 measurement_pilot;
|
2014-04-07 18:32:28 -04:00
|
|
|
u8 subelem_len;
|
|
|
|
u8 subelems[255];
|
2013-05-16 10:48:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct multiple_bssid {
|
|
|
|
u8 max_bssid_indicator;
|
2014-04-07 18:32:28 -04:00
|
|
|
u8 subelem_len;
|
|
|
|
u8 subelems[255];
|
2013-05-16 10:48:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct neighbor_report {
|
|
|
|
u8 bssid[ETH_ALEN];
|
2014-11-22 06:43:17 -05:00
|
|
|
u32 bssid_info;
|
2013-05-16 10:48:59 -04:00
|
|
|
u8 regulatory_class;
|
|
|
|
u8 channel_number;
|
|
|
|
u8 phy_type;
|
2014-11-22 08:37:27 -05:00
|
|
|
u8 preference; /* valid if preference_present=1 */
|
|
|
|
u16 tsf_offset; /* valid if tsf_present=1 */
|
|
|
|
u16 beacon_int; /* valid if tsf_present=1 */
|
|
|
|
char country[2]; /* valid if country_present=1 */
|
|
|
|
u8 rm_capab[5]; /* valid if rm_capab_present=1 */
|
|
|
|
u16 bearing; /* valid if bearing_present=1 */
|
|
|
|
u16 rel_height; /* valid if bearing_present=1 */
|
|
|
|
u32 distance; /* valid if bearing_present=1 */
|
|
|
|
u64 bss_term_tsf; /* valid if bss_term_present=1 */
|
|
|
|
u16 bss_term_dur; /* valid if bss_term_present=1 */
|
|
|
|
unsigned int preference_present:1;
|
|
|
|
unsigned int tsf_present:1;
|
|
|
|
unsigned int country_present:1;
|
|
|
|
unsigned int rm_capab_present:1;
|
|
|
|
unsigned int bearing_present:1;
|
|
|
|
unsigned int bss_term_present:1;
|
2013-05-16 10:48:59 -04:00
|
|
|
struct measurement_pilot *meas_pilot;
|
|
|
|
struct multiple_bssid *mul_bssid;
|
2014-11-22 12:50:16 -05:00
|
|
|
int freq;
|
2013-05-16 10:48:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-02-26 10:27:19 -05:00
|
|
|
int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s,
|
2012-12-16 05:31:16 -05:00
|
|
|
u8 action, u16 intval, struct wpabuf *tfs_req);
|
2012-02-26 10:27:19 -05:00
|
|
|
|
|
|
|
void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
|
2013-12-29 04:22:23 -05:00
|
|
|
const struct ieee80211_mgmt *mgmt, size_t len);
|
2012-02-26 10:27:19 -05:00
|
|
|
|
2013-05-16 10:50:31 -04:00
|
|
|
int wnm_send_bss_transition_mgmt_query(struct wpa_supplicant *wpa_s,
|
|
|
|
u8 query_reason);
|
2013-05-16 10:48:59 -04:00
|
|
|
void wnm_deallocate_memory(struct wpa_supplicant *wpa_s);
|
|
|
|
|
2014-11-22 11:04:21 -05:00
|
|
|
|
|
|
|
#ifdef CONFIG_WNM
|
|
|
|
|
|
|
|
int wnm_scan_process(struct wpa_supplicant *wpa_s);
|
|
|
|
|
|
|
|
#else /* CONFIG_WNM */
|
|
|
|
|
|
|
|
static inline int wnm_scan_process(struct wpa_supplicant *wpa_s)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_WNM */
|
|
|
|
|
2012-02-26 10:27:19 -05:00
|
|
|
#endif /* WNM_STA_H */
|