1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 17:26:20 +03:00

[package] hostapd: allow mixed TKIP/CCMP for 11n

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25543 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2011-02-15 08:49:45 +00:00
parent d52a5ec1ec
commit 200663f5d9

View File

@ -50,8 +50,8 @@ hostapd_set_bss_options() {
esac esac
# enforce CCMP for 11ng and 11na # enforce CCMP for 11ng and 11na
case "$hwmode" in case "$hwmode:$crypto" in
*ng|*na) crypto="CCMP";; *ng:TKIP|*na:TKIP) crypto="CCMP TKIP";;
esac esac
# use crypto/auth settings for building the hostapd config # use crypto/auth settings for building the hostapd config