hostapd: add 11n mode and ht_capab option for hostapd
authorGabor Juhos <juhosg@openwrt.org>
Sun, 1 Mar 2009 18:02:49 +0000 (18:02 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Sun, 1 Mar 2009 18:02:49 +0000 (18:02 +0000)
SVN-Revision: 14713

package/hostapd/files/hostapd.sh

index 4c57d11dd7e79fb1134594ba7d8de057ab426ccf..afd72fa1ad00df2b8c26c389572313acc745de5f 100644 (file)
@@ -22,7 +22,7 @@ hostapd_setup_vif() {
                        wpa=3
                        crypto="CCMP TKIP"
                ;;
-               *) 
+               *)
                        wpa=1
                        crypto="TKIP"
                ;;
@@ -81,6 +81,11 @@ hostapd_setup_vif() {
                11a) hwmode=a;;
                11b) hwmode=b;;
                11g) hwmode=g;;
+               11n)
+                       hwmode=g
+                       append hostapd_cfg "ieee80211n=1" "$N"
+                       config_get ht_capab "$device" ht_capab
+               ;;
                *)
                        hwmode=
                        [ "$channel" -gt 14 ] && hwmode=a
@@ -98,6 +103,7 @@ debug=0
 wpa=$wpa
 ${crypto:+wpa_pairwise=$crypto}
 ${country:+country_code=$country}
+${ht_capab:+ht_capab=$ht_capab}
 $hostapd_cfg
 EOF
        hostapd -P /var/run/wifi-$ifname.pid -B /var/run/hostapd-$ifname.conf