diff options
author | David Bauer <mail@david-bauer.net> | 2022-02-16 23:09:51 +0100 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2022-02-19 16:14:45 +0100 |
commit | 6f787239771044ed7eeaf22301c543b699f25cb4 (patch) | |
tree | 2390e7c314e9ddc8bf61de359b6a9c09b704ee84 /package/network | |
parent | e3166643fbc9f3cf67948c660a76b5cc60bf0ef8 (diff) | |
download | upstream-6f787239771044ed7eeaf22301c543b699f25cb4.tar.gz upstream-6f787239771044ed7eeaf22301c543b699f25cb4.tar.bz2 upstream-6f787239771044ed7eeaf22301c543b699f25cb4.zip |
hostapd: add STA extended capabilities to get_clients
Add the STAs extended capabilities to the ubus STA information. This
way, external daemons can be made aware of a STAs capabilities.
This field is of an array type and contains 0 or more bytes of a STAs
advertised extended capabilities.
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/services/hostapd/src/src/ap/ubus.c | 10 |
1 files changed, 10 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 fdc2a3fd26..bdab8fa7b8 100644 --- a/package/network/services/hostapd/src/src/ap/ubus.c +++ b/package/network/services/hostapd/src/src/ap/ubus.c @@ -322,6 +322,16 @@ hostapd_bss_get_clients(struct ubus_context *ctx, struct ubus_object *obj, for (i = 0; i < ARRAY_SIZE(sta->rrm_enabled_capa); i++) blobmsg_add_u32(&b, "", sta->rrm_enabled_capa[i]); blobmsg_close_array(&b, r); + + r = blobmsg_open_array(&b, "extended_capabilities"); + /* Check if client advertises extended capabilities */ + if (sta->ext_capability && sta->ext_capability[0] > 0) { + for (i = 0; i < sta->ext_capability[0]; i++) { + blobmsg_add_u32(&b, "", sta->ext_capability[1 + i]); + } + } + blobmsg_close_array(&b, r); + blobmsg_add_u32(&b, "aid", sta->aid); #ifdef CONFIG_TAXONOMY r = blobmsg_alloc_string_buffer(&b, "signature", 1024); |