mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
Set NORMAL_SCAN_REQ on SELECT_NETWORK/ENABLE_NETWORK
wpa_s->scan_req needs to be set in these cases to get correct scanning behavior. This is mainly needed for starting of AP mode operation immediately in ap_scan=2 case. This fixes an issue that was found with mac80211_hwsim test cases in the following sequence: dbus_autoscan dbus_ap_scan_2_ap_mode_scan Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
035efb2c43
commit
35d403096e
@ -2581,8 +2581,10 @@ void wpa_supplicant_enable_network(struct wpa_supplicant *wpa_s,
|
||||
wpa_supplicant_cancel_sched_scan(wpa_s);
|
||||
}
|
||||
|
||||
if (wpa_supplicant_fast_associate(wpa_s) != 1)
|
||||
if (wpa_supplicant_fast_associate(wpa_s) != 1) {
|
||||
wpa_s->scan_req = NORMAL_SCAN_REQ;
|
||||
wpa_supplicant_req_scan(wpa_s, 0, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2710,8 +2712,10 @@ void wpa_supplicant_select_network(struct wpa_supplicant *wpa_s,
|
||||
wpa_s->reassociate = 1;
|
||||
|
||||
if (wpa_s->connect_without_scan ||
|
||||
wpa_supplicant_fast_associate(wpa_s) != 1)
|
||||
wpa_supplicant_fast_associate(wpa_s) != 1) {
|
||||
wpa_s->scan_req = NORMAL_SCAN_REQ;
|
||||
wpa_supplicant_req_scan(wpa_s, 0, disconnected ? 100000 : 0);
|
||||
}
|
||||
|
||||
if (ssid)
|
||||
wpas_notify_network_selected(wpa_s, ssid);
|
||||
|
Loading…
Reference in New Issue
Block a user