Android: Add state message sent after 'status' command
This triggers re-transmission of CTRL-EVENT-STATE-CHANGE and CTRL-EVENT-CONNECTED events on STATUS command for Android framework specific processing. Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
This commit is contained in:
parent
6b49907665
commit
f6c2b8c367
1 changed files with 20 additions and 0 deletions
|
@ -1629,6 +1629,26 @@ static int wpa_supplicant_ctrl_iface_status(struct wpa_supplicant *wpa_s,
|
|||
if (res >= 0)
|
||||
pos += res;
|
||||
|
||||
#ifdef ANDROID
|
||||
wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
|
||||
"id=%d state=%d BSSID=" MACSTR " SSID=%s",
|
||||
wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
|
||||
wpa_s->wpa_state,
|
||||
MAC2STR(wpa_s->bssid),
|
||||
wpa_s->current_ssid && wpa_s->current_ssid->ssid ?
|
||||
wpa_ssid_txt(wpa_s->current_ssid->ssid,
|
||||
wpa_s->current_ssid->ssid_len) : "");
|
||||
if (wpa_s->wpa_state == WPA_COMPLETED) {
|
||||
struct wpa_ssid *ssid = wpa_s->current_ssid;
|
||||
wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_CONNECTED
|
||||
"- connection to " MACSTR
|
||||
" completed %s [id=%d id_str=%s]",
|
||||
MAC2STR(wpa_s->bssid), "(auth)",
|
||||
ssid ? ssid->id : -1,
|
||||
ssid && ssid->id_str ? ssid->id_str : "");
|
||||
}
|
||||
#endif /* ANDROID */
|
||||
|
||||
return pos - buf;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue