[PATCH V2 1/7] multiple_bssid: add the config file

John Crispin john at phrozen.org
Mon Jul 6 08:50:25 EDT 2020


This patch adds a new config option to enable this feature.

Signed-off-by: John Crispin <john at phrozen.org>
---
 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 1861b5203..97ded78aa 100644
--- a/hostapd/config_file.c
+++ b/hostapd/config_file.c
@@ -4563,6 +4563,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 b705c378f..3a363bc4e 100644
--- a/src/ap/ap_config.h
+++ b/src/ap/ap_config.h
@@ -986,6 +986,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.25.1




More information about the Hostap mailing list