projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfddb1f
)
[package] mac80211: support per-vif wmm option, defaults to 1 if unset
author
Jo-Philipp Wich
<jow@openwrt.org>
Tue, 11 Jan 2011 13:19:53 +0000
(13:19 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Tue, 11 Jan 2011 13:19:53 +0000
(13:19 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24966
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
package/mac80211/files/lib/wifi/mac80211.sh
patch
|
blob
|
history
diff --git
a/package/mac80211/files/lib/wifi/mac80211.sh
b/package/mac80211/files/lib/wifi/mac80211.sh
index
2f4abd0
..
b20785c
100644
(file)
--- a/
package/mac80211/files/lib/wifi/mac80211.sh
+++ b/
package/mac80211/files/lib/wifi/mac80211.sh
@@
-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}