diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-09-14 14:08:35 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-09-14 14:08:35 +0000 |
commit | 362287f5013d889b480f2ad6e81b5c922f332af4 (patch) | |
tree | db1f66c22fe474d2e31c08ef8e40515686abd455 | |
parent | 17836e1a4ab24ecf773f6cce97be235579ec4c58 (diff) |
hostapd: add an option for configuring the maximum number of connected clients
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33400 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/hostapd/files/hostapd.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index a473accd73..f1aae80c43 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -10,6 +10,7 @@ hostapd_set_bss_options() { config_get wpa_master_rekey "$vif" wpa_master_rekey # 640 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 device "$vif" device config_get hwmode "$device" hwmode @@ -20,6 +21,9 @@ hostapd_set_bss_options() { if [ "$ap_isolate" -gt 0 ]; then append "$var" "ap_isolate=$ap_isolate" "$N" fi + if [ "$max_num_sta" -gt 0 ]; then + append "$var" "max_num_sta=$max_num_sta" "$N" + fi append "$var" "disassoc_low_ack=$disassoc_low_ack" "$N" # Examples: |