hostapd: add beacon_interval to get_status ubus output
authorDavid Bauer <mail@david-bauer.net>
Mon, 25 Oct 2021 19:33:40 +0000 (21:33 +0200)
committerDavid Bauer <mail@david-bauer.net>
Thu, 25 Nov 2021 01:41:42 +0000 (02:41 +0100)
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>
package/network/services/hostapd/src/src/ap/ubus.c

index 69778596a4ce33868c39cc40e94326d79548ad8b..e0d3d2ae909ab251b6dc99e317384ea265d87201 100644 (file)
@@ -425,6 +425,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);