P2P: Do not initiate scan on P2P Device when enabled
Do not start a scan on a P2P Device interface when processing an interface enabled event. Signed-off-by: Ilan Peer <ilan.peer@intel.com>
This commit is contained in:
parent
74a1319e50
commit
782e2f785e
1 changed files with 6 additions and 0 deletions
|
@ -3274,6 +3274,12 @@ void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
|
|||
wpa_dbg(wpa_s, MSG_DEBUG, "Interface was enabled");
|
||||
if (wpa_s->wpa_state == WPA_INTERFACE_DISABLED) {
|
||||
wpa_supplicant_update_mac_addr(wpa_s);
|
||||
if (wpa_s->p2p_mgmt) {
|
||||
wpa_supplicant_set_state(wpa_s,
|
||||
WPA_DISCONNECTED);
|
||||
break;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_AP
|
||||
if (!wpa_s->ap_iface) {
|
||||
wpa_supplicant_set_state(wpa_s,
|
||||
|
|
Loading…
Reference in a new issue