|
@@ -660,10 +660,21 @@ int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf,
|
|
|
ret = os_snprintf(buf + len, buflen - len,
|
|
|
"vht_oper_chwidth=%d\n"
|
|
|
"vht_oper_centr_freq_seg0_idx=%d\n"
|
|
|
- "vht_oper_centr_freq_seg1_idx=%d\n",
|
|
|
+ "vht_oper_centr_freq_seg1_idx=%d\n"
|
|
|
+ "vht_caps_info=%08x\n",
|
|
|
iface->conf->vht_oper_chwidth,
|
|
|
iface->conf->vht_oper_centr_freq_seg0_idx,
|
|
|
- iface->conf->vht_oper_centr_freq_seg1_idx);
|
|
|
+ iface->conf->vht_oper_centr_freq_seg1_idx,
|
|
|
+ iface->conf->vht_capab);
|
|
|
+ if (os_snprintf_error(buflen - len, ret))
|
|
|
+ return len;
|
|
|
+ len += ret;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (iface->conf->ieee80211n && !hapd->conf->disable_11n) {
|
|
|
+ ret = os_snprintf(buf + len, buflen - len,
|
|
|
+ "ht_caps_info=%04x\n",
|
|
|
+ hapd->iconf->ht_capab);
|
|
|
if (os_snprintf_error(buflen - len, ret))
|
|
|
return len;
|
|
|
len += ret;
|