From: Ayala Beker Date: Thu, 10 Dec 2015 10:56:05 +0000 (+0200) Subject: Disconnect before trying to switch to a different network X-Git-Tag: hostap_2_6~1177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e6a2cf2829384e9864045fca2e4243cf69c6569;p=thirdparty%2Fhostap.git Disconnect before trying to switch to a different network Previously, when wpa_supplicant received bgscan results with a preferred network, it connected to that network without disconnecting from the previous one. This might result in an inconsistent state of upper layers. Fix this by disconnecting from the current AP before connecting to the new one when the network profile changes and there is an existing connection. Signed-off-by: Ayala Beker --- diff --git a/wpa_supplicant/events.c b/wpa_supplicant/events.c index a7b053d6c..5e8ebad81 100644 --- a/wpa_supplicant/events.c +++ b/wpa_supplicant/events.c @@ -1574,6 +1574,13 @@ static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s, return 0; } + if (ssid != wpa_s->current_ssid && + wpa_s->wpa_state >= WPA_AUTHENTICATING) { + wpa_s->own_disconnect_req = 1; + wpa_supplicant_deauthenticate( + wpa_s, WLAN_REASON_DEAUTH_LEAVING); + } + if (wpa_supplicant_connect(wpa_s, selected, ssid) < 0) { wpa_dbg(wpa_s, MSG_DEBUG, "Connect failed"); return -1;