mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-19 03:14:05 -05:00
Indicate ieee80211ax configuration in hostapd STATUS output
This adds a ieee80211ax=0/1 line to the STATUS output to indicate the configuration of ieee80211ax, which similar to ieee80211n and ieee80211ac. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
71da22b94b
commit
6afde52a78
@ -712,6 +712,7 @@ int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf,
|
|||||||
"secondary_channel=%d\n"
|
"secondary_channel=%d\n"
|
||||||
"ieee80211n=%d\n"
|
"ieee80211n=%d\n"
|
||||||
"ieee80211ac=%d\n"
|
"ieee80211ac=%d\n"
|
||||||
|
"ieee80211ax=%d\n"
|
||||||
"beacon_int=%u\n"
|
"beacon_int=%u\n"
|
||||||
"dtim_period=%d\n",
|
"dtim_period=%d\n",
|
||||||
iface->conf->channel,
|
iface->conf->channel,
|
||||||
@ -720,6 +721,7 @@ int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf,
|
|||||||
iface->conf->ieee80211n && !hapd->conf->disable_11n,
|
iface->conf->ieee80211n && !hapd->conf->disable_11n,
|
||||||
iface->conf->ieee80211ac &&
|
iface->conf->ieee80211ac &&
|
||||||
!hapd->conf->disable_11ac,
|
!hapd->conf->disable_11ac,
|
||||||
|
iface->conf->ieee80211ax,
|
||||||
iface->conf->beacon_int,
|
iface->conf->beacon_int,
|
||||||
hapd->conf->dtim_period);
|
hapd->conf->dtim_period);
|
||||||
if (os_snprintf_error(buflen - len, ret))
|
if (os_snprintf_error(buflen - len, ret))
|
||||||
|
Loading…
Reference in New Issue
Block a user