Android: Add SSID in supplicant change event
In addition, change wpa_s->pending_bssid to wpa_s->bssid for the BSSID value in the event. Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
This commit is contained in:
parent
22cf7d7324
commit
6b49907665
1 changed files with 6 additions and 2 deletions
|
@ -90,9 +90,13 @@ void wpas_notify_state_changed(struct wpa_supplicant *wpa_s,
|
|||
|
||||
#ifdef ANDROID
|
||||
wpa_msg_ctrl(wpa_s, MSG_INFO, WPA_EVENT_STATE_CHANGE
|
||||
"id=%d state=%d BSSID=" MACSTR,
|
||||
"id=%d state=%d BSSID=" MACSTR " SSID=%s",
|
||||
wpa_s->current_ssid ? wpa_s->current_ssid->id : -1,
|
||||
new_state, MAC2STR(wpa_s->pending_bssid));
|
||||
new_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) : "");
|
||||
#endif /* ANDROID */
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue