From: Ian Archer <ian.archer@xxxxxxxxxxxxxxxxxxxxxxxxx> There is currently no support for setting hostapd_bss_config.pbss from a config file. This patch adds a key naturally called "pbss" which can be used to set it. Cc: Antony King <antony.king@xxxxxxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Brendan Jackman <brendan.jackman@xxxxxxxxxxxxxxxxxxxxxxxxx> --- hostapd/config_file.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hostapd/config_file.c b/hostapd/config_file.c index daaa484f2..e2ca2789b 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -4258,6 +4258,8 @@ static int hostapd_config_fill(struct hostapd_config *conf, conf->rssi_reject_assoc_rssi = atoi(pos); } else if (os_strcmp(buf, "rssi_reject_assoc_timeout") == 0) { conf->rssi_reject_assoc_timeout = atoi(pos); + } else if (os_strcmp(buf, "pbss") == 0) { + bss->pbss = atoi(pos); } else { wpa_printf(MSG_ERROR, "Line %d: unknown configuration item '%s'", -- 2.17.1 _______________________________________________ Hostap mailing list Hostap@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/hostap