From: jow Date: Sat, 4 Oct 2014 09:38:17 +0000 (+0000) Subject: iwinfo: handle 802.11ac mode for lua X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=86d218d1bf39065019b55b3f6a1d8677364fe247;p=openwrt.git iwinfo: handle 802.11ac mode for lua Signed-off-by: Bartosz Markowski git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42757 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/network/utils/iwinfo/src/iwinfo_lua.c b/package/network/utils/iwinfo/src/iwinfo_lua.c index cdb90d5b47..3201af4f01 100644 --- a/package/network/utils/iwinfo/src/iwinfo_lua.c +++ b/package/network/utils/iwinfo/src/iwinfo_lua.c @@ -499,6 +499,9 @@ static int iwinfo_L_hwmodelist(lua_State *L, int (*func)(const char *, int *)) lua_pushboolean(L, hwmodes & IWINFO_80211_N); lua_setfield(L, -2, "n"); + lua_pushboolean(L, hwmodes & IWINFO_80211_AC); + lua_setfield(L, -2, "ac"); + return 1; }