|
@@ -1308,6 +1308,26 @@ static void wpa_supplicant_event_scan_results(struct wpa_supplicant *wpa_s,
|
|
|
#endif /* CONFIG_NO_SCAN_PROCESSING */
|
|
|
|
|
|
|
|
|
+int wpa_supplicant_fast_associate(struct wpa_supplicant *wpa_s)
|
|
|
+{
|
|
|
+#ifdef CONFIG_NO_SCAN_PROCESSING
|
|
|
+ return -1;
|
|
|
+#else /* CONFIG_NO_SCAN_PROCESSING */
|
|
|
+ struct os_time now;
|
|
|
+
|
|
|
+ if (wpa_s->last_scan_res_used <= 0)
|
|
|
+ return -1;
|
|
|
+
|
|
|
+ os_get_time(&now);
|
|
|
+ if (now.sec - wpa_s->last_scan.sec > 5) {
|
|
|
+ wpa_printf(MSG_DEBUG, "Fast associate: Old scan results");
|
|
|
+ return -1;
|
|
|
+ }
|
|
|
+
|
|
|
+ return wpas_select_network_from_last_scan(wpa_s);
|
|
|
+#endif /* CONFIG_NO_SCAN_PROCESSING */
|
|
|
+}
|
|
|
+
|
|
|
#ifdef CONFIG_WNM
|
|
|
|
|
|
static void wnm_bss_keep_alive(void *eloop_ctx, void *sock_ctx)
|