Skip to content
Snippets Groups Projects
Commit 2bc9e6f0 authored by Janusz Dziedzic's avatar Janusz Dziedzic
Browse files

hostapd: show station RRM caps

parent 67f3883e
Branches
Tags
1 merge request!11hostapd: show station RRM caps
--- a/src/ap/ctrl_iface_ap.c
+++ b/src/ap/ctrl_iface_ap.c
@@ -546,6 +546,12 @@ static int hostapd_ctrl_iface_sta_mib(st
len += ret;
}
+ len += os_snprintf(buf + len, buflen - len, "rrm_capab=");
+ len += wpa_snprintf_hex(buf + len, buflen - len,
+ sta->rrm_enabled_capa,
+ sizeof(sta->rrm_enabled_capa));
+ len += os_snprintf(buf + len, buflen - len, "\n");
+
ret = os_snprintf(buf + len, buflen - len, "max_nss=%u\n",
hostapd_maxnss(hapd, sta));
if (!os_snprintf_error(buflen - len, ret))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment