[package] mac80211: support per-vif wmm option, defaults to 1 if unset
authorJo-Philipp Wich <jow@openwrt.org>
Tue, 11 Jan 2011 13:19:53 +0000 (13:19 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Tue, 11 Jan 2011 13:19:53 +0000 (13:19 +0000)
SVN-Revision: 24966

package/mac80211/files/lib/wifi/mac80211.sh

index 2f4abd0852a091c4d07ef11bcb2e0823edfb627d..b20785cf672316c73947019cbdec223086c39945 100644 (file)
@@ -103,12 +103,14 @@ mac80211_hostapd_setup_bss() {
        config_get_bool wds "$vif" wds 0
        [ "$wds" -gt 0 ] && append hostapd_cfg "wds_sta=1" "$N"
 
+       local macaddr hidden maxassoc wmm
        config_get macaddr "$vif" macaddr
-       config_get_bool hidden "$vif" hidden 0
        config_get maxassoc "$vif" maxassoc
+       config_get_bool hidden "$vif" hidden 0
+       config_get_bool wmm "$vif" wmm 1
        cat >> /var/run/hostapd-$phy.conf <<EOF
 $hostapd_cfg
-wmm_enabled=1
+wmm_enabled=$wmm
 bssid=$macaddr
 ignore_broadcast_ssid=$hidden
 ${maxassoc:+max_num_sta=$maxassoc}