]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
EHT: Indicate ieee80211be configuration in hostapd STATUS output
authorVeerendranath Jakkam <quic_vjakkam@quicinc.com>
Tue, 3 May 2022 19:04:46 +0000 (00:34 +0530)
committerJouni Malinen <j@w1.fi>
Thu, 5 May 2022 10:20:15 +0000 (13:20 +0300)
Signed-off-by: Veerendranath Jakkam <quic_vjakkam@quicinc.com>
src/ap/ctrl_iface_ap.c

index cd36420a4f97bdb04a14f1d4e9b0efe2f1559c65..29b41f5bcea12a0ab83acd68654e4586ec0dd715 100644 (file)
@@ -747,6 +747,7 @@ int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf,
                          "ieee80211n=%d\n"
                          "ieee80211ac=%d\n"
                          "ieee80211ax=%d\n"
+                         "ieee80211be=%d\n"
                          "beacon_int=%u\n"
                          "dtim_period=%d\n",
                          iface->conf->channel,
@@ -759,6 +760,8 @@ int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf,
                          !hapd->conf->disable_11ac,
                          iface->conf->ieee80211ax &&
                          !hapd->conf->disable_11ax,
+                         iface->conf->ieee80211be &&
+                         !hapd->conf->disable_11be,
                          iface->conf->beacon_int,
                          hapd->conf->dtim_period);
        if (os_snprintf_error(buflen - len, ret))