diff options
author | Alex Khouderchah <akhouderchah@chromium.org> | 2018-07-05 23:29:09 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2019-01-02 22:39:12 (GMT) |
commit | 38b405c8f055fafd3117bee32c108de86f835f94 (patch) | |
tree | ac5d19e6b051e911bb1dc309a0c9960e39ad60c3 /wpa_supplicant/notify.h | |
parent | 80d06d0ca9f3b2986e89c8169087b7a71487bf95 (diff) | |
download | hostap-38b405c8f055fafd3117bee32c108de86f835f94.zip hostap-38b405c8f055fafd3117bee32c108de86f835f94.tar.gz hostap-38b405c8f055fafd3117bee32c108de86f835f94.tar.bz2 |
dbus: Expose authentication status to D-Bus
wpa_supplicant currently logs CTRL-EVENT-AUTH-FAILED errors when
authentication fails, but doesn't expose any property to the D-Bus
interface related to this.
This change adds the "AuthStatusCode" property to the interface, which
contains the IEEE 802.11 status code of the last authentication.
Signed-off-by: Alex Khouderchah <akhouderchah@chromium.org>
Diffstat (limited to 'wpa_supplicant/notify.h')
-rw-r--r-- | wpa_supplicant/notify.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wpa_supplicant/notify.h b/wpa_supplicant/notify.h index 9605785..65f513e 100644 --- a/wpa_supplicant/notify.h +++ b/wpa_supplicant/notify.h @@ -23,6 +23,7 @@ void wpas_notify_state_changed(struct wpa_supplicant *wpa_s, enum wpa_states new_state, enum wpa_states old_state); void wpas_notify_disconnect_reason(struct wpa_supplicant *wpa_s); +void wpas_notify_auth_status_code(struct wpa_supplicant *wpa_s); void wpas_notify_assoc_status_code(struct wpa_supplicant *wpa_s); void wpas_notify_roam_time(struct wpa_supplicant *wpa_s); void wpas_notify_roam_complete(struct wpa_supplicant *wpa_s); |