]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Request new scan only for the original interface
authorJithu Jance <jithu@broadcom.com>
Sun, 17 Nov 2013 10:23:09 +0000 (12:23 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 17 Nov 2013 14:47:22 +0000 (16:47 +0200)
Request new scan only for the interface for which the original scan
request and results has come. Otherwise while sharing scan results along
with P2P interfaces, the new scan will be requested on P2P interfaces.

Signed-hostap: Jithu Jance <jithu@broadcom.com>

wpa_supplicant/events.c

index 44937723f7352127d54e05363e7c4d41f941df64..904b533d03a5be31e04361b7b1be0d6219c12a70 100644 (file)
@@ -46,7 +46,7 @@
 
 #ifndef CONFIG_NO_SCAN_PROCESSING
 static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s,
-                                             int new_scan);
+                                             int new_scan, int own_request);
 #endif /* CONFIG_NO_SCAN_PROCESSING */
 
 
@@ -1302,12 +1302,12 @@ static int _wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
 
        wpa_scan_results_free(scan_res);
 
-       return wpas_select_network_from_last_scan(wpa_s, 1);
+       return wpas_select_network_from_last_scan(wpa_s, 1, own_request);
 }
 
 
 static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s,
-                                             int new_scan)
+                                             int new_scan, int own_request)
 {
        struct wpa_bss *selected;
        struct wpa_ssid *ssid = NULL;
@@ -1342,7 +1342,12 @@ static int wpas_select_network_from_last_scan(struct wpa_supplicant *wpa_s,
                        wpa_supplicant_associate(wpa_s, NULL, ssid);
                        if (new_scan)
                                wpa_supplicant_rsn_preauth_scan_results(wpa_s);
-               } else {
+               } else if (own_request) {
+                       /*
+                        * No SSID found. If SCAN results are as a result of
+                        * own scan request and not due to a scan request on
+                        * another shared interface, try another scan.
+                        */
                        int timeout_sec = wpa_s->scan_interval;
                        int timeout_usec = 0;
 #ifdef CONFIG_P2P
@@ -1446,7 +1451,7 @@ int wpa_supplicant_fast_associate(struct wpa_supplicant *wpa_s)
                return -1;
        }
 
-       return wpas_select_network_from_last_scan(wpa_s, 0);
+       return wpas_select_network_from_last_scan(wpa_s, 0, 1);
 #endif /* CONFIG_NO_SCAN_PROCESSING */
 }