Enhance the possible values for he_bss_color. Anything greater than 63 will make hostapd choose a random color. Signed-off-by: John Crispin <john@xxxxxxxxxxx> --- hostapd/config_file.c | 7 +++++-- hostapd/hostapd.conf | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/hostapd/config_file.c b/hostapd/config_file.c index 97ded78aa..6c1f629cf 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -3439,8 +3439,11 @@ static int hostapd_config_fill(struct hostapd_config *conf, } else if (os_strcmp(buf, "he_mu_beamformer") == 0) { conf->he_phy_capab.he_mu_beamformer = atoi(pos); } else if (os_strcmp(buf, "he_bss_color") == 0) { - conf->he_op.he_bss_color = atoi(pos) & 0x3f; - conf->he_op.he_bss_color_disabled = 0; + conf->he_op.he_bss_color = atoi(pos); + if (conf->he_op.he_bss_color > 63) + conf->he_op.he_bss_color = (os_random() % 63) + 1; + if (conf->he_op.he_bss_color) + conf->he_op.he_bss_color_disabled = 0; } else if (os_strcmp(buf, "he_bss_color_partial") == 0) { conf->he_op.he_bss_color_partial = atoi(pos); } else if (os_strcmp(buf, "he_default_pe_duration") == 0) { diff --git a/hostapd/hostapd.conf b/hostapd/hostapd.conf index 91ac96785..5fc4d5f86 100644 --- a/hostapd/hostapd.conf +++ b/hostapd/hostapd.conf @@ -801,7 +801,10 @@ wmm_ac_vo_acm=0 # 1 = supported #he_mu_beamformer=1 -# he_bss_color: BSS color (1-63) +# he_bss_color: +# 0 = disable +# 1-63 = pre-defined color +# 64+ = random color #he_bss_color=1 # he_bss_color_partial: BSS color AID equation -- 2.25.1 _______________________________________________ Hostap mailing list Hostap@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/hostap