[PATCH] Add CTRL-EVENT-SCAN-FAILED notification in case of scan failure
Dmitry Shmidt
dimitrysh
Wed Nov 5 13:22:25 PST 2014
Change-Id: I00e9d8230d945eda49df47aedabf0974713d8017
Signed-off-by: Dmitry Shmidt <dimitrysh at google.com>
---
src/common/wpa_ctrl.h | 2 ++
wpa_supplicant/scan.c | 2 ++
2 files changed, 4 insertions(+)
diff --git a/src/common/wpa_ctrl.h b/src/common/wpa_ctrl.h
index d91594e..1da38a3 100644
--- a/src/common/wpa_ctrl.h
+++ b/src/common/wpa_ctrl.h
@@ -58,6 +58,8 @@ extern "C" {
#define WPA_EVENT_SCAN_STARTED "CTRL-EVENT-SCAN-STARTED "
/** New scan results available */
#define WPA_EVENT_SCAN_RESULTS "CTRL-EVENT-SCAN-RESULTS "
+/** Scan command failed */
+#define WPA_EVENT_SCAN_FAILED "CTRL-EVENT-SCAN-FAILED "
/** wpa_supplicant state change */
#define WPA_EVENT_STATE_CHANGE "CTRL-EVENT-STATE-CHANGE "
/** A new BSS entry was added (followed by BSS entry id and BSSID) */
diff --git a/wpa_supplicant/scan.c b/wpa_supplicant/scan.c
index 40eb8d8..be31e4b 100644
--- a/wpa_supplicant/scan.c
+++ b/wpa_supplicant/scan.c
@@ -168,6 +168,8 @@ static void wpas_trigger_scan_cb(struct wpa_radio_work *work, int deinit)
if (ret) {
wpa_supplicant_notify_scanning(wpa_s, 0);
wpas_notify_scan_done(wpa_s, 0);
+ wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_SCAN_FAILED "ret=%d",
+ ret);
radio_work_done(work);
return;
}
--
2.1.0.rc2.206.gedb03e5
More information about the Hostap
mailing list