diff mbox series

[1/6] multiple_bssid: add the config file

Message ID 20200604091525.10877-2-john@phrozen.org
State Superseded
Headers show
Series multiple_bssid: add AP support | expand

Commit Message

John Crispin June 4, 2020, 9:15 a.m. UTC
This patch adds a new config option to enable this feature.

Signed-off-by: John Crispin <john@phrozen.org>
---
 hostapd/config_file.c | 2 ++
 src/ap/ap_config.h    | 2 ++
 2 files changed, 4 insertions(+)
diff mbox series

Patch

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;