diff options
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index fc4806c6097f..643e1291a1e8 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -164,6 +164,7 @@ struct ieee80211_low_level_stats { | |||
164 | * @BSS_CHANGED_QOS: QoS for this association was enabled/disabled. Note | 164 | * @BSS_CHANGED_QOS: QoS for this association was enabled/disabled. Note |
165 | * that it is only ever disabled for station mode. | 165 | * that it is only ever disabled for station mode. |
166 | * @BSS_CHANGED_IDLE: Idle changed for this BSS/interface. | 166 | * @BSS_CHANGED_IDLE: Idle changed for this BSS/interface. |
167 | * @BSS_CHANGED_SSID: SSID changed for this BSS (AP mode) | ||
167 | */ | 168 | */ |
168 | enum ieee80211_bss_change { | 169 | enum ieee80211_bss_change { |
169 | BSS_CHANGED_ASSOC = 1<<0, | 170 | BSS_CHANGED_ASSOC = 1<<0, |
@@ -181,6 +182,7 @@ enum ieee80211_bss_change { | |||
181 | BSS_CHANGED_ARP_FILTER = 1<<12, | 182 | BSS_CHANGED_ARP_FILTER = 1<<12, |
182 | BSS_CHANGED_QOS = 1<<13, | 183 | BSS_CHANGED_QOS = 1<<13, |
183 | BSS_CHANGED_IDLE = 1<<14, | 184 | BSS_CHANGED_IDLE = 1<<14, |
185 | BSS_CHANGED_SSID = 1<<15, | ||
184 | 186 | ||
185 | /* when adding here, make sure to change ieee80211_reconfig */ | 187 | /* when adding here, make sure to change ieee80211_reconfig */ |
186 | }; | 188 | }; |
@@ -254,6 +256,9 @@ enum ieee80211_rssi_event { | |||
254 | * @idle: This interface is idle. There's also a global idle flag in the | 256 | * @idle: This interface is idle. There's also a global idle flag in the |
255 | * hardware config which may be more appropriate depending on what | 257 | * hardware config which may be more appropriate depending on what |
256 | * your driver/device needs to do. | 258 | * your driver/device needs to do. |
259 | * @ssid: The SSID of the current vif. Only valid in AP-mode. | ||
260 | * @ssid_len: Length of SSID given in @ssid. | ||
261 | * @hidden_ssid: The SSID of the current vif is hidden. Only valid in AP-mode. | ||
257 | */ | 262 | */ |
258 | struct ieee80211_bss_conf { | 263 | struct ieee80211_bss_conf { |
259 | const u8 *bssid; | 264 | const u8 *bssid; |
@@ -280,6 +285,9 @@ struct ieee80211_bss_conf { | |||
280 | bool arp_filter_enabled; | 285 | bool arp_filter_enabled; |
281 | bool qos; | 286 | bool qos; |
282 | bool idle; | 287 | bool idle; |
288 | u8 ssid[IEEE80211_MAX_SSID_LEN]; | ||
289 | size_t ssid_len; | ||
290 | bool hidden_ssid; | ||
283 | }; | 291 | }; |
284 | 292 | ||
285 | /** | 293 | /** |