[PATCH 3/7] hostapd: Add config_id to get_config() output
Raphaël Mélotte
raphael.melotte at mind.be
Mon Aug 1 04:08:23 PDT 2022
Signed-off-by: Raphaël Mélotte <raphael.melotte at mind.be>
---
hostapd/ctrl_iface.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/hostapd/ctrl_iface.c b/hostapd/ctrl_iface.c
index 558293095..ca96cc2df 100644
--- a/hostapd/ctrl_iface.c
+++ b/hostapd/ctrl_iface.c
@@ -983,6 +983,14 @@ static int hostapd_ctrl_iface_get_config(struct hostapd_data *hapd,
return pos - buf;
pos += ret;
+ if ((hapd->conf->config_id)) {
+ ret = os_snprintf(pos, end - pos, "config_id=%s\n",
+ hapd->conf->config_id);
+ if (os_snprintf_error(end - pos, ret))
+ return pos - buf;
+ pos += ret;
+ }
+
#ifdef CONFIG_WPS
ret = os_snprintf(pos, end - pos, "wps_state=%s\n",
hapd->conf->wps_state == 0 ? "disabled" :
--
2.37.1
More information about the Hostap
mailing list