From d68b6d7b10a60436850daa287ac24c5a465f83e0 Mon Sep 17 00:00:00 2001 From: Antonio Prcela Date: Sun, 29 Oct 2023 12:51:16 +0100 Subject: [PATCH] hostapd: output ap_isolate for each bss when using STATUS Adding the ap_isolate config parameter to the STATUS output to determine the current ap_isolate config of an hostapd access-point. Currently neither STATUS, GET ap_isolate, nor GET_CONFIG output it. Useful if the hostapd access point has been created with wpa_ctrl_request() without using a *.conf file, for example hostapd.conf. Signed-off-by: Antonio Prcela Signed-off-by: Antonio Prcela --- src/ap/ctrl_iface_ap.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ap/ctrl_iface_ap.c b/src/ap/ctrl_iface_ap.c index c7504ad2b..034d791aa 100644 --- a/src/ap/ctrl_iface_ap.c +++ b/src/ap/ctrl_iface_ap.c @@ -928,13 +928,15 @@ int hostapd_ctrl_iface_status(struct hostapd_data *hapd, char *buf, "bss[%d]=%s\n" "bssid[%d]=" MACSTR "\n" "ssid[%d]=%s\n" - "num_sta[%d]=%d\n", + "num_sta[%d]=%d\n" + "ap_isolate[%d]=%d\n", (int) i, bss->conf->iface, (int) i, MAC2STR(bss->own_addr), (int) i, wpa_ssid_txt(bss->conf->ssid.ssid, bss->conf->ssid.ssid_len), - (int) i, bss->num_sta); + (int) i, bss->num_sta, + (int) i, bss->conf->isolate); if (os_snprintf_error(buflen - len, ret)) return len; len += ret; -- 2.42.0