123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #ifndef WNM_STA_H
- #define WNM_STA_H
- struct measurement_pilot {
- u8 measurement_pilot;
- u8 subelem_len;
- u8 subelems[255];
- };
- struct multiple_bssid {
- u8 max_bssid_indicator;
- u8 subelem_len;
- u8 subelems[255];
- };
- struct neighbor_report {
- u8 bssid[ETH_ALEN];
- u32 bssid_info;
- u8 regulatory_class;
- u8 channel_number;
- u8 phy_type;
- u8 preference;
- u16 tsf_offset;
- u16 beacon_int;
- char country[2];
- u8 rm_capab[5];
- u16 bearing;
- u16 rel_height;
- u32 distance;
- u64 bss_term_tsf;
- u16 bss_term_dur;
- 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;
- unsigned int acceptable:1;
- #ifdef CONFIG_MBO
- unsigned int is_first:1;
- #endif
- struct measurement_pilot *meas_pilot;
- struct multiple_bssid *mul_bssid;
- int freq;
- };
- int ieee802_11_send_wnmsleep_req(struct wpa_supplicant *wpa_s,
- u8 action, u16 intval, struct wpabuf *tfs_req);
- void ieee802_11_rx_wnm_action(struct wpa_supplicant *wpa_s,
- const struct ieee80211_mgmt *mgmt, size_t len);
- int wnm_send_bss_transition_mgmt_query(struct wpa_supplicant *wpa_s,
- u8 query_reason,
- const char *btm_candidates,
- int cand_list);
- void wnm_deallocate_memory(struct wpa_supplicant *wpa_s);
- #ifdef CONFIG_WNM
- int wnm_scan_process(struct wpa_supplicant *wpa_s, int reply_on_fail);
- #else
- static inline int wnm_scan_process(struct wpa_supplicant *wpa_s,
- int reply_on_fail)
- {
- return 0;
- }
- #endif
- #endif
|