From: Hu Wang Date: Mon, 22 Apr 2019 07:39:48 +0000 (+0800) Subject: Indicate ieee80211ax configuration in hostapd STATUS output X-Git-Tag: hostap_2_9~328 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6afde52a78b75db2c89ee300d702743578f9b49c;p=thirdparty%2Fhostap.git 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 --- diff --git a/src/ap/ctrl_iface_ap.c b/src/ap/ctrl_iface_ap.c index c69371511..2c4953d8b 100644 --- a/src/ap/ctrl_iface_ap.c +++ b/src/ap/ctrl_iface_ap.c @@ -712,6 +712,7 @@ int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf, "secondary_channel=%d\n" "ieee80211n=%d\n" "ieee80211ac=%d\n" + "ieee80211ax=%d\n" "beacon_int=%u\n" "dtim_period=%d\n", 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->ieee80211ac && !hapd->conf->disable_11ac, + iface->conf->ieee80211ax, iface->conf->beacon_int, hapd->conf->dtim_period); if (os_snprintf_error(buflen - len, ret))