diff options
author | Jouni Malinen <j@w1.fi> | 2014-11-22 18:12:12 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2014-11-22 18:17:47 (GMT) |
commit | 75d65857d5b42e0ea9503260447aff48d6ac18fb (patch) | |
tree | fb239b31d5002a8d5d0dc3ff1b1990c7edc66ef5 /wpa_supplicant/wnm_sta.c | |
parent | e1117c1c01f79290856518eff82b1b6d957ab078 (diff) | |
download | hostap-75d65857d5b42e0ea9503260447aff48d6ac18fb.zip hostap-75d65857d5b42e0ea9503260447aff48d6ac18fb.tar.gz hostap-75d65857d5b42e0ea9503260447aff48d6ac18fb.tar.bz2 |
WNM: Use recent scan results on BSS transition request
If the last scans are recent (for now, less than ten seconds old), use
them instead of triggering a new scan when a BSS Transition Management
Request frame is received. As a fallback, allow a new scan to be
triggered if no matches were found.
Signed-off-by: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'wpa_supplicant/wnm_sta.c')
-rw-r--r-- | wpa_supplicant/wnm_sta.c | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/wpa_supplicant/wnm_sta.c b/wpa_supplicant/wnm_sta.c index 7aa2f7f..019dca1 100644 --- a/wpa_supplicant/wnm_sta.c +++ b/wpa_supplicant/wnm_sta.c @@ -576,7 +576,7 @@ static void wnm_send_bss_transition_mgmt_resp( } -int wnm_scan_process(struct wpa_supplicant *wpa_s) +int wnm_scan_process(struct wpa_supplicant *wpa_s, int reply_on_fail) { struct wpa_bss *bss; struct wpa_ssid *ssid = wpa_s->current_ssid; @@ -628,8 +628,12 @@ int wnm_scan_process(struct wpa_supplicant *wpa_s) wnm_deallocate_memory(wpa_s); return 1; - /* Send reject response for all the failures */ send_bss_resp_fail: + if (!reply_on_fail) + return 0; + + /* Send reject response for all the failures */ + if (wpa_s->wnm_reply) { wpa_s->wnm_reply = 0; wnm_send_bss_transition_mgmt_resp(wpa_s, @@ -874,6 +878,20 @@ static void ieee802_11_rx_bss_trans_mgmt_req(struct wpa_supplicant *wpa_s, wpa_s->wnm_cand_valid_until.usec %= 1000000; os_memcpy(wpa_s->wnm_cand_from_bss, wpa_s->bssid, ETH_ALEN); + if (wpa_s->last_scan_res_used > 0) { + struct os_reltime now; + + os_get_reltime(&now); + if (!os_reltime_expired(&now, &wpa_s->last_scan, 10)) { + wpa_printf(MSG_DEBUG, + "WNM: Try to use recent scan results"); + if (wnm_scan_process(wpa_s, 0) > 0) + return; + wpa_printf(MSG_DEBUG, + "WNM: No match in previous scan results - try a new scan"); + } + } + wnm_set_scan_freqs(wpa_s); wpa_supplicant_req_scan(wpa_s, 0, 0); } else if (reply) { |