diff options
author | Felix Fietkau <nbd@nbd.name> | 2022-11-10 13:08:28 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2022-11-10 13:10:20 +0100 |
commit | 88c43b58872babc62274f42579876d13f0a38e22 (patch) | |
tree | b5bd61c0916fd699bd7634bfdde8e701ba8c1162 | |
parent | 4628e7ae4d404c2ba718ae48bfb9fb102d25b953 (diff) | |
download | upstream-88c43b58872babc62274f42579876d13f0a38e22.tar.gz upstream-88c43b58872babc62274f42579876d13f0a38e22.tar.bz2 upstream-88c43b58872babc62274f42579876d13f0a38e22.zip |
hostapd: remove invalid dtim_period option processing
dtim_period is a bss property, not a device one.
It is already handled properly in mac80211.sh
Fixes: 30c64825c7ed ("hostapd: add dtim_period, local_pwr_constraint, spectrum_mgmt_required")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
(cherry-picked from commit ddf736e543d4a214f563dc008b6fb5ee5e0d1b66)
-rw-r--r-- | package/network/services/hostapd/files/hostapd.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index e32ed5846d..2fcc46248d 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -131,7 +131,7 @@ hostapd_prepare_device_config() { local base_cfg= - json_get_vars country country3 country_ie beacon_int:100 dtim_period:2 doth require_mode legacy_rates \ + json_get_vars country country3 country_ie beacon_int:100 doth require_mode legacy_rates \ acs_chan_bias local_pwr_constraint spectrum_mgmt_required airtime_mode cell_density \ rts_threshold beacon_rate rssi_reject_assoc_rssi rssi_ignore_probe_request maxassoc @@ -232,7 +232,6 @@ hostapd_prepare_device_config() { [ -n "$brlist" ] && append base_cfg "basic_rates=$brlist" "$N" append base_cfg "beacon_int=$beacon_int" "$N" [ -n "$rts_threshold" ] && append base_cfg "rts_threshold=$rts_threshold" "$N" - append base_cfg "dtim_period=$dtim_period" "$N" [ "$airtime_mode" -gt 0 ] && append base_cfg "airtime_mode=$airtime_mode" "$N" [ -n "$maxassoc" ] && append base_cfg "iface_max_num_sta=$maxassoc" "$N" |