diff options
author | David Bauer <mail@david-bauer.net> | 2021-10-25 21:33:40 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2022-03-20 01:31:47 +0100 |
commit | e44a781e118b18da159d121e6caea926197b17d4 (patch) | |
tree | 1e22c321a9ea13628d0cd0a615f2ad7b04adbc68 /package | |
parent | 95b0b8725c68e26f6014d672552411ab5e083abe (diff) | |
download | upstream-e44a781e118b18da159d121e6caea926197b17d4.tar.gz upstream-e44a781e118b18da159d121e6caea926197b17d4.tar.bz2 upstream-e44a781e118b18da159d121e6caea926197b17d4.zip |
hostapd: add beacon_interval to get_status ubus output
Add the beacon interval to hostapd status output. This allows external
services to discover the beacon interval for a specific VAP.
This way, external wireless management daemons can correctly calculate
fields containing TBTT value from absolute time-values.
Signed-off-by: David Bauer <mail@david-bauer.net>
(cherry picked from commit 3ba98468424db1f081818982dfa2a07ab85ae136)
Diffstat (limited to 'package')
-rw-r--r-- | package/network/services/hostapd/src/src/ap/ubus.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/services/hostapd/src/src/ap/ubus.c b/package/network/services/hostapd/src/src/ap/ubus.c index 64d417a758..a9cded0113 100644 --- a/package/network/services/hostapd/src/src/ap/ubus.c +++ b/package/network/services/hostapd/src/src/ap/ubus.c @@ -423,6 +423,7 @@ hostapd_bss_get_status(struct ubus_context *ctx, struct ubus_object *obj, blobmsg_add_u32(&b, "freq", hapd->iface->freq); blobmsg_add_u32(&b, "channel", ieee80211_frequency_to_channel(hapd->iface->freq)); + blobmsg_add_u32(&b, "beacon_interval", hapd->iconf->beacon_int); snprintf(phy_name, 17, "%s", hapd->iface->phy); blobmsg_add_string(&b, "phy", phy_name); |