[PATCH] hostapd: output ap_isolate for each bss when using STATUS
Antonio Prcela
antonio.prcela at gmail.com
Sun Oct 29 04:56:24 PDT 2023
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 <antonio.prcela at gmail.com>
Signed-off-by: Antonio Prcela <antonio.prcela at sartura.hr>
---
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
On 29. 10. 2023. 09:53, Jouni Malinen wrote:
> On Mon, Jul 17, 2023 at 09:53:32AM +0200, Antonio Prcela wrote:
>> From 1091cc150031f34a4ae4a9ad227118706136c2e1 Mon Sep 17 00:00:00 2001
>> From: Antonio Prcela <antonio.prcela at gmail.com>
>> Date: Mon, 17 Jul 2023 09:51:32 +0200
>> Subject: [PATCH] hostapd: output ap_isolate for each bss when using STATUS
>>
>> ---
>
> I would need to have a patch with the Signed-off-by: line as described
> in the top level CONTRIBUTIONS file to consider applying this. The
> commit message should also justify why this change is needed.
>
More information about the Hostap
mailing list