mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-19 02:11:28 +00:00
19 lines
637 B
Diff
19 lines
637 B
Diff
--- a/src/ap/ctrl_iface_ap.c
|
|
+++ b/src/ap/ctrl_iface_ap.c
|
|
@@ -739,6 +739,7 @@ int hostapd_ctrl_iface_status(struct hos
|
|
"secondary_channel=%d\n"
|
|
"ieee80211n=%d\n"
|
|
"ieee80211ac=%d\n"
|
|
+ "ieee80211ad=%d\n"
|
|
"ieee80211ax=%d\n"
|
|
"beacon_int=%u\n"
|
|
"dtim_period=%d\n",
|
|
@@ -750,6 +751,7 @@ int hostapd_ctrl_iface_status(struct hos
|
|
iface->conf->ieee80211n && !hapd->conf->disable_11n,
|
|
iface->conf->ieee80211ac &&
|
|
!hapd->conf->disable_11ac,
|
|
+ iface->conf->hw_mode == HOSTAPD_MODE_IEEE80211AD,
|
|
iface->conf->ieee80211ax,
|
|
iface->conf->beacon_int,
|
|
hapd->conf->dtim_period);
|