Try to start a new scan more quickly after driver rejection

This speeds up recovery from some cases where the driver may refuse
a new scan request command temporarily.
This commit is contained in:
Jouni Malinen 2010-04-11 19:56:23 +03:00 committed by Jouni Malinen
parent 8cd82735cb
commit 1c4c9c5078

View file

@ -425,7 +425,7 @@ static void wpa_supplicant_scan(void *eloop_ctx, void *timeout_ctx)
wpa_printf(MSG_WARNING, "Failed to initiate AP scan.");
if (prev_state != wpa_s->wpa_state)
wpa_supplicant_set_state(wpa_s, prev_state);
wpa_supplicant_req_scan(wpa_s, 10, 0);
wpa_supplicant_req_scan(wpa_s, 1, 0);
} else
wpa_s->scan_runs++;
}