mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 17:15:00 +02:00
hostapd: add a config option for the inactivity timeout
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33412 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8d4ebc34f0
commit
f232e678da
@ -11,6 +11,7 @@ hostapd_set_bss_options() {
|
||||
config_get_bool ap_isolate "$vif" isolate 0
|
||||
config_get_bool disassoc_low_ack "$vif" disassoc_low_ack 1
|
||||
config_get max_num_sta "$vif" max_num_sta 0
|
||||
config_get max_inactivity "$vif" max_inactivity 0
|
||||
|
||||
config_get device "$vif" device
|
||||
config_get hwmode "$device" hwmode
|
||||
@ -24,6 +25,9 @@ hostapd_set_bss_options() {
|
||||
if [ "$max_num_sta" -gt 0 ]; then
|
||||
append "$var" "max_num_sta=$max_num_sta" "$N"
|
||||
fi
|
||||
if [ "$max_inactivity" -gt 0 ]; then
|
||||
append "$var" "ap_max_inactivity=$max_inactivity" "$N"
|
||||
fi
|
||||
append "$var" "disassoc_low_ack=$disassoc_low_ack" "$N"
|
||||
|
||||
# Examples:
|
||||
|
Loading…
Reference in New Issue
Block a user