aboutsummaryrefslogtreecommitdiffstats
path: root/src/ap
diff options
context:
space:
mode:
authorLuciano Coelho <coelho@ti.com>2012-04-01 18:12:04 +0300
committerJouni Malinen <j@w1.fi>2012-04-01 18:12:04 +0300
commit370b076197bccc4b6d6862b94861571dadc5c128 (patch)
treed954348e00ea7e330c4964af6ad8ea9bde1d8be9 /src/ap
parentc6e86b63d28a6ea87f7ebaf3b35f7343524dc0b5 (diff)
downloadexternal_wpa_supplicant_8_ti-370b076197bccc4b6d6862b94861571dadc5c128.zip
external_wpa_supplicant_8_ti-370b076197bccc4b6d6862b94861571dadc5c128.tar.gz
external_wpa_supplicant_8_ti-370b076197bccc4b6d6862b94861571dadc5c128.tar.bz2
hostapd: Only update already-set beacons when processing OLBC
When hostapd is about to start an AP using HT40, it starts a scan to check whether it is allowed or not. If OLBC is detected before the scan has completed, it sets the beacons prematurely. To fix this, instead of setting all beacons when OLBC is detected, only update the ones that have already been started. Signed-off-by: Luciano Coelho <coelho@ti.com>
Diffstat (limited to 'src/ap')
-rw-r--r--src/ap/ap_list.c4
-rw-r--r--src/ap/beacon.c10
-rw-r--r--src/ap/beacon.h1
3 files changed, 13 insertions, 2 deletions
diff --git a/src/ap/ap_list.c b/src/ap/ap_list.c
index 165cb16..933b158 100644
--- a/src/ap/ap_list.c
+++ b/src/ap/ap_list.c
@@ -318,7 +318,7 @@ void ap_list_process_beacon(struct hostapd_iface *iface,
#endif /* CONFIG_IEEE80211N */
if (set_beacon)
- ieee802_11_set_beacons(iface);
+ ieee802_11_update_beacons(iface);
}
@@ -373,7 +373,7 @@ static void ap_list_timer(void *eloop_ctx, void *timeout_ctx)
}
if (set_beacon)
- ieee802_11_set_beacons(iface);
+ ieee802_11_update_beacons(iface);
}
diff --git a/src/ap/beacon.c b/src/ap/beacon.c
index 5efa4cd..0253663 100644
--- a/src/ap/beacon.c
+++ b/src/ap/beacon.c
@@ -700,4 +700,14 @@ void ieee802_11_set_beacons(struct hostapd_iface *iface)
ieee802_11_set_beacon(iface->bss[i]);
}
+
+/* only update beacons if started */
+void ieee802_11_update_beacons(struct hostapd_iface *iface)
+{
+ size_t i;
+ for (i = 0; i < iface->num_bss; i++)
+ if (iface->bss[i]->beacon_set_done)
+ ieee802_11_set_beacon(iface->bss[i]);
+}
+
#endif /* CONFIG_NATIVE_WINDOWS */
diff --git a/src/ap/beacon.h b/src/ap/beacon.h
index a944f5f..0dd6021 100644
--- a/src/ap/beacon.h
+++ b/src/ap/beacon.h
@@ -22,5 +22,6 @@ void handle_probe_req(struct hostapd_data *hapd,
const struct ieee80211_mgmt *mgmt, size_t len);
void ieee802_11_set_beacon(struct hostapd_data *hapd);
void ieee802_11_set_beacons(struct hostapd_iface *iface);
+void ieee802_11_update_beacons(struct hostapd_iface *iface);
#endif /* BEACON_H */