diff options
author | Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> | 2010-08-08 10:46:24 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> | 2010-08-08 10:46:24 +0000 |
commit | 3bad36fbaf40429420ae0670ff2c15f1a1ba5bad (patch) | |
tree | 6692c55df5ccb40459a4f6fded9bdc9cc1f3961f /package/hostapd | |
parent | 07c4f27dec239c193dadd852af4d98ffee89974e (diff) | |
download | upstream-3bad36fbaf40429420ae0670ff2c15f1a1ba5bad.tar.gz upstream-3bad36fbaf40429420ae0670ff2c15f1a1ba5bad.tar.bz2 upstream-3bad36fbaf40429420ae0670ff2c15f1a1ba5bad.zip |
[package] hostapd: Add support for 'iapp_interface' option, thanks stsp (#7719)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22527 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd')
-rw-r--r-- | package/hostapd/files/hostapd.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index c4e91689da..bc58b88f9e 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -116,6 +116,7 @@ hostapd_set_bss_options() { config_get ssid "$vif" ssid config_get bridge "$vif" bridge config_get ieee80211d "$vif" ieee80211d + config_get iapp_interface "$vif" iapp_interface config_get_bool wps_pbc "$vif" wps_pushbutton 0 [ -n "$wps_possible" -a "$wps_pbc" -gt 0 ] && { @@ -128,6 +129,7 @@ hostapd_set_bss_options() { append "$var" "ssid=$ssid" "$N" [ -n "$bridge" ] && append "$var" "bridge=$bridge" "$N" [ -n "$ieee80211d" ] && append "$var" "ieee80211d=$ieee80211d" "$N" + [ -n "$iapp_interface" ] && append "$var" $(uci_get_state network "$iapp_interface" ifname "$iapp_interface") "$N" [ "$wpa" -ge "2" ] && config_get ieee80211w "$vif" ieee80211w case "$ieee80211w" in |