mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
Fix AP mode in wpa_supplicant with interface events
Needs to not trigger a scan here when the AP mode setup sets interface down/up.
This commit is contained in:
parent
0314e26a61
commit
9919f7a22b
@ -1805,9 +1805,13 @@ void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
|
||||
case EVENT_INTERFACE_ENABLED:
|
||||
wpa_printf(MSG_DEBUG, "Interface was enabled");
|
||||
if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
|
||||
wpa_supplicant_set_state(wpa_s,
|
||||
WPA_DISCONNECTED);
|
||||
wpa_supplicant_req_scan(wpa_s, 0, 0);
|
||||
if (!wpa_s->ap_iface) {
|
||||
wpa_supplicant_set_state(wpa_s,
|
||||
WPA_DISCONNECTED);
|
||||
wpa_supplicant_req_scan(wpa_s, 0, 0);
|
||||
} else
|
||||
wpa_supplicant_set_state(wpa_s,
|
||||
WPA_COMPLETED);
|
||||
}
|
||||
break;
|
||||
case EVENT_INTERFACE_DISABLED:
|
||||
|
Loading…
Reference in New Issue
Block a user