blob: 7d3d94648e1930f6b338f7529998227e9aa670e3 [file] [log] [blame]
developer29c4d2d2022-12-26 19:41:22 +08001From c9304d3303d563ad6d2619f4e07864ed12f96889 Mon Sep 17 00:00:00 2001
2From: David Bauer <mail@david-bauer.net>
3Date: Sat, 14 May 2022 21:41:03 +0200
4Subject: [PATCH] hostapd: config: support random BSS color
5
6Configure the HE BSS color to a random value in case the config defines
7a BSS color which exceeds the max BSS color (63).
8
9Signed-off-by: David Bauer <mail@david-bauer.net>
10---
11 hostapd/config_file.c | 2 ++
12 1 file changed, 2 insertions(+)
13
14--- a/hostapd/config_file.c
15+++ b/hostapd/config_file.c
developer8bff6472023-07-17 11:11:44 +080016@@ -3500,6 +3500,8 @@ static int hostapd_config_fill(struct ho
developer29c4d2d2022-12-26 19:41:22 +080017 } else if (os_strcmp(buf, "he_bss_color") == 0) {
18 conf->he_op.he_bss_color = atoi(pos) & 0x3f;
19 conf->he_op.he_bss_color_disabled = 0;
20+ if (atoi(pos) > 63)
21+ conf->he_op.he_bss_color = os_random() % 63 + 1;
22 } else if (os_strcmp(buf, "he_bss_color_partial") == 0) {
23 conf->he_op.he_bss_color_partial = atoi(pos);
24 } else if (os_strcmp(buf, "he_default_pe_duration") == 0) {