Skip to content
Snippets Groups Projects
Commit 6e8bb689 authored by Enrique Rodríguez Valencia's avatar Enrique Rodríguez Valencia Committed by Daniel Golle
Browse files

hostapd: Add disable_vht when using NOHT/HT* modes


disable_vht parameter needs to be set when using wpa_supplicant NOHT/HT* modes.

Signed-off-by: default avatarEnrique Rodríguez Valencia <enrique.rodriguez@galgus.net>
parent 84c96de6
No related branches found
No related tags found
No related merge requests found
......@@ -772,7 +772,8 @@ wpa_supplicant_set_fixed_freq() {
case "$htmode" in
VHT80) append network_data "max_oper_chwidth=1" "$N$T";;
VHT160) append network_data "max_oper_chwidth=2" "$N$T";;
*) append network_data "max_oper_chwidth=0" "$N$T";;
VHT20|VHT40) append network_data "max_oper_chwidth=0" "$N$T";;
*) append network_data "disable_vht=1" "$N$T";;
esac
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment