mac80211: Handle concurrent AP/STA beaconing properly
Use the "start_disabled" option in hostapd that was added in the earlier patch. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> SVN-Revision: 37732
This commit is contained in:
parent
76ca564e79
commit
39ab281fae
1 changed files with 6 additions and 1 deletions
|
@ -110,6 +110,7 @@ EOF
|
|||
mac80211_hostapd_setup_bss() {
|
||||
local phy="$1"
|
||||
local vif="$2"
|
||||
local staidx="$3"
|
||||
|
||||
hostapd_cfg=
|
||||
cfgfile="/var/run/hostapd-$phy.conf"
|
||||
|
@ -132,6 +133,8 @@ mac80211_hostapd_setup_bss() {
|
|||
config_get_bool wds "$vif" wds 0
|
||||
[ "$wds" -gt 0 ] && append hostapd_cfg "wds_sta=1" "$N"
|
||||
|
||||
[ "$staidx" -gt 0 ] && append hostapd_cfg "start_disabled=1" "$N"
|
||||
|
||||
local macaddr hidden maxassoc wmm
|
||||
config_get macaddr "$vif" macaddr
|
||||
config_get maxassoc "$vif" maxassoc
|
||||
|
@ -318,6 +321,7 @@ enable_mac80211() {
|
|||
local i=0
|
||||
local macidx=0
|
||||
local apidx=0
|
||||
local staidx=0
|
||||
fixed=""
|
||||
local hostapd_ctrl=""
|
||||
|
||||
|
@ -383,6 +387,7 @@ enable_mac80211() {
|
|||
;;
|
||||
sta)
|
||||
local wdsflag
|
||||
staidx="$(($staidx + 1))"
|
||||
config_get_bool wds "$vif" wds 0
|
||||
[ "$wds" -gt 0 ] && wdsflag="4addr on"
|
||||
iw phy "$phy" interface add "$ifname" type managed $wdsflag
|
||||
|
@ -433,7 +438,7 @@ enable_mac80211() {
|
|||
config_get mode "$vif" mode
|
||||
case "$mode" in
|
||||
ap)
|
||||
mac80211_hostapd_setup_bss "$phy" "$vif"
|
||||
mac80211_hostapd_setup_bss "$phy" "$vif" "$staidx"
|
||||
start_hostapd=1
|
||||
;;
|
||||
mesh)
|
||||
|
|
Loading…
Reference in a new issue