hostapd: respect fixed channel BW in HE20 mode
When using htmode 'HE20' with a radio mode that uses wpa-supplicant
(like mesh or sta), it will default to 40 MHz bw if disable_ht40 is not
set. This commit fixes this behaviour.
Signed-off-by: Jesus Fernandez Manzano <jesus.manzano@galgus.net>
(cherry-picked from commit af83e3ce0f)
This commit is contained in:
committed by
Felix Fietkau
parent
23909a85de
commit
345f8fc7f3
@@ -1121,7 +1121,7 @@ wpa_supplicant_set_fixed_freq() {
|
|||||||
append network_data "frequency=$freq" "$N$T"
|
append network_data "frequency=$freq" "$N$T"
|
||||||
case "$htmode" in
|
case "$htmode" in
|
||||||
NOHT) append network_data "disable_ht=1" "$N$T";;
|
NOHT) append network_data "disable_ht=1" "$N$T";;
|
||||||
HT20|VHT20) append network_data "disable_ht40=1" "$N$T";;
|
HE20|HT20|VHT20) append network_data "disable_ht40=1" "$N$T";;
|
||||||
HT40*|VHT40*|VHT80*|VHT160*) append network_data "ht40=1" "$N$T";;
|
HT40*|VHT40*|VHT80*|VHT160*) append network_data "ht40=1" "$N$T";;
|
||||||
esac
|
esac
|
||||||
case "$htmode" in
|
case "$htmode" in
|
||||||
|
|||||||
Reference in New Issue
Block a user