aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorArik Nemtsov <arik@wizery.com>2011-09-04 04:11:32 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-09-14 13:56:26 -0400
commit7827493b886c307bc497a669305207f8a5b36eb2 (patch)
treee7d109fc3a2e78ee4f8ff56d79704d6280dc1c22 /include
parent28e3181a7717b7e7934391c29e21c5302324479c (diff)
mac80211: add ssid config to bss information in AP-mode
Set SSID information from nl80211 beacon parameters. Advertise changes in SSID to low level drivers. Signed-off-by: Arik Nemtsov <arik@wizery.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/mac80211.h8
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 */
168enum ieee80211_bss_change { 169enum 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 */
258struct ieee80211_bss_conf { 263struct 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/**