aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ieee80211.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/ieee80211.h')
-rw-r--r--include/net/ieee80211.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/net/ieee80211.h b/include/net/ieee80211.h
index 9310b2e01d41..931737eec6c6 100644
--- a/include/net/ieee80211.h
+++ b/include/net/ieee80211.h
@@ -225,8 +225,9 @@ struct ieee80211_snap_hdr {
225#define WLAN_CAPABILITY_PBCC (1<<6) 225#define WLAN_CAPABILITY_PBCC (1<<6)
226#define WLAN_CAPABILITY_CHANNEL_AGILITY (1<<7) 226#define WLAN_CAPABILITY_CHANNEL_AGILITY (1<<7)
227#define WLAN_CAPABILITY_SPECTRUM_MGMT (1<<8) 227#define WLAN_CAPABILITY_SPECTRUM_MGMT (1<<8)
228#define WLAN_CAPABILITY_QOS (1<<9)
228#define WLAN_CAPABILITY_SHORT_SLOT_TIME (1<<10) 229#define WLAN_CAPABILITY_SHORT_SLOT_TIME (1<<10)
229#define WLAN_CAPABILITY_OSSS_OFDM (1<<13) 230#define WLAN_CAPABILITY_DSSS_OFDM (1<<13)
230 231
231/* Status codes */ 232/* Status codes */
232enum ieee80211_statuscode { 233enum ieee80211_statuscode {
@@ -756,6 +757,7 @@ struct ieee80211_network {
756 u16 beacon_interval; 757 u16 beacon_interval;
757 u16 listen_interval; 758 u16 listen_interval;
758 u16 atim_window; 759 u16 atim_window;
760 u8 erp_value;
759 u8 wpa_ie[MAX_WPA_IE_LEN]; 761 u8 wpa_ie[MAX_WPA_IE_LEN];
760 size_t wpa_ie_len; 762 size_t wpa_ie_len;
761 u8 rsn_ie[MAX_WPA_IE_LEN]; 763 u8 rsn_ie[MAX_WPA_IE_LEN];
@@ -910,6 +912,9 @@ struct ieee80211_device {
910 int (*handle_probe_response) (struct net_device * dev, 912 int (*handle_probe_response) (struct net_device * dev,
911 struct ieee80211_probe_response * resp, 913 struct ieee80211_probe_response * resp,
912 struct ieee80211_network * network); 914 struct ieee80211_network * network);
915 int (*handle_probe_request) (struct net_device * dev,
916 struct ieee80211_probe_request * req,
917 struct ieee80211_rx_stats * stats);
913 int (*handle_assoc_response) (struct net_device * dev, 918 int (*handle_assoc_response) (struct net_device * dev,
914 struct ieee80211_assoc_response * resp, 919 struct ieee80211_assoc_response * resp,
915 struct ieee80211_network * network); 920 struct ieee80211_network * network);