diff options
author | Matthew Wang <matthewmwang@chromium.org> | 2018-05-04 18:16:18 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2019-01-02 22:27:01 (GMT) |
commit | 80d06d0ca9f3b2986e89c8169087b7a71487bf95 (patch) | |
tree | d45e034b37fe70957ab2b5b3c7df1697566d551e /wpa_supplicant/notify.c | |
parent | 2bbad1c7c9cbedf16eea122c9376e65691213108 (diff) | |
download | hostap-80d06d0ca9f3b2986e89c8169087b7a71487bf95.zip hostap-80d06d0ca9f3b2986e89c8169087b7a71487bf95.tar.gz hostap-80d06d0ca9f3b2986e89c8169087b7a71487bf95.tar.bz2 |
dbus: Export BSS Transition Management status
Add new Interface properties "BSSTMStatus", which carries the status of
the most recent BSS Transition Management request. This property will be
logged in UMA to measure 802.11v success.
Signed-off-by: Matthew Wang <matthewmwang@chromium.org>
Diffstat (limited to 'wpa_supplicant/notify.c')
-rw-r--r-- | wpa_supplicant/notify.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/wpa_supplicant/notify.c b/wpa_supplicant/notify.c index a9d5671..530548f 100644 --- a/wpa_supplicant/notify.c +++ b/wpa_supplicant/notify.c @@ -176,6 +176,15 @@ void wpas_notify_session_length(struct wpa_supplicant *wpa_s) } +void wpas_notify_bss_tm_status(struct wpa_supplicant *wpa_s) +{ + if (wpa_s->p2p_mgmt) + return; + + wpas_dbus_signal_prop_changed(wpa_s, WPAS_DBUS_PROP_BSS_TM_STATUS); +} + + void wpas_notify_network_changed(struct wpa_supplicant *wpa_s) { if (wpa_s->p2p_mgmt) |