[PATCH 1/6] multiple_bssid: add the config file

John Crispin <[email protected]> Thu, 4 Jun 2020 11:15:20 +0200
Newsgroups gmane.linux.drivers.hostap
Message-ID <[email protected]>
This patch adds a new config option to enable this feature.

Signed-off-by: John Crispin <[email protected]>
---
 hostapd/config_file.c | 2 ++
 src/ap/ap_config.h    | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/hostapd/config_file.c b/hostapd/config_file.c
index 49894c5ba..e0f4f2fcb 100644
--- a/hostapd/config_file.c
+++ b/hostapd/config_file.c
@@ -4657,6 +4657,8 @@ static int hostapd_config_fill(struct hostapd_config *conf,
 		}
 		bss->mka_psk_set |= MKA_PSK_SET_CKN;
 #endif /* CONFIG_MACSEC */
+	} else if (os_strcmp(buf, "multiple_bssid") == 0) {
+		conf->multiple_bssid = atoi(pos);
 	} else {
 		wpa_printf(MSG_ERROR,
 			   "Line %d: unknown configuration item '%s'",
diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h
index cafc44edd..596e5a470 100644
--- a/src/ap/ap_config.h
+++ b/src/ap/ap_config.h
@@ -993,6 +993,8 @@ struct hostapd_config {
 	u8 vht_oper_centr_freq_seg1_idx;
 	u8 ht40_plus_minus_allowed;
 
+	u8 multiple_bssid;
+
 	/* Use driver-generated interface addresses when adding multiple BSSs */
 	u8 use_driver_iface_addr;
 
-- 
2.20.1