[package] hostapd: Add support for 'iapp_interface' option, thanks stsp (#7719)
authoracinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 8 Aug 2010 10:46:24 +0000 (10:46 +0000)
committeracinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 8 Aug 2010 10:46:24 +0000 (10:46 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22527 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/hostapd/files/hostapd.sh

index c4e9168..bc58b88 100644 (file)
@@ -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
This page took 0.028013 seconds and 4 git commands to generate.