hostapd: add support for configuring the beacon rate
authorFelix Fietkau <nbd@nbd.name>
Wed, 26 May 2021 11:04:50 +0000 (13:04 +0200)
committerFelix Fietkau <nbd@nbd.name>
Tue, 23 Nov 2021 17:30:05 +0000 (18:30 +0100)
Signed-off-by: Felix Fietkau <nbd@nbd.name>
(cherry-picked from commit 46509a51dd63aa49648ad0f130461817f43532d0)

package/network/services/hostapd/files/hostapd.sh

index 3b884b51e4548f455aaf73cee29077f703bc48a9..6a830dfad1e64b33ef71e79b04a8aca2321abc90 100644 (file)
@@ -91,6 +91,7 @@ hostapd_add_log_config() {
 hostapd_common_add_device_config() {
        config_add_array basic_rate
        config_add_array supported_rates
+       config_add_string beacon_rate
 
        config_add_string country country3
        config_add_boolean country_ie doth
@@ -117,7 +118,7 @@ hostapd_prepare_device_config() {
 
        json_get_vars country country3 country_ie beacon_int:100 dtim_period:2 doth require_mode legacy_rates \
                acs_chan_bias local_pwr_constraint spectrum_mgmt_required airtime_mode cell_density \
-               rts_threshold
+               rts_threshold beacon_rate
 
        hostapd_set_log_options base_cfg
 
@@ -209,6 +210,7 @@ hostapd_prepare_device_config() {
                hostapd_add_rate brlist "$br"
        done
 
+       [ -n "$beacon_rate" ] && append base_cfg "beacon_rate=$beacon_rate" "$N"
        [ -n "$rlist" ] && append base_cfg "supported_rates=$rlist" "$N"
        [ -n "$brlist" ] && append base_cfg "basic_rates=$brlist" "$N"
        append base_cfg "beacon_int=$beacon_int" "$N"