libs/iwinfo: ignore proprietary ciphers or auth suites - we can't handle them anyway

This commit is contained in:
Jo-Philipp Wich 2009-08-24 13:51:49 +00:00
parent 335e519dd6
commit 0e88acfd4e

View file

@ -158,39 +158,33 @@ static int iwinfo_L_scanlist(lua_State *L, int (*func)(const char *, char *, int
lua_setfield(L, -2, "wep"); lua_setfield(L, -2, "wep");
lua_newtable(L); lua_newtable(L);
for( j = 0, y = 1; j < 8; j++ ) for( j = 0, y = 1; j < IW_IE_CYPHER_NUM; j++ )
{ {
if( e->crypto.group_ciphers & (1<<j) ) if( e->crypto.group_ciphers & (1<<j) )
{ {
lua_pushstring(L, (j < IW_IE_CYPHER_NUM) lua_pushstring(L, iw_ie_cypher_name[j]);
? iw_ie_cypher_name[j] : "Proprietary");
lua_rawseti(L, -2, y++); lua_rawseti(L, -2, y++);
} }
} }
lua_setfield(L, -2, "group_ciphers"); lua_setfield(L, -2, "group_ciphers");
lua_newtable(L); lua_newtable(L);
for( j = 0, y = 1; j < 8; j++ ) for( j = 0, y = 1; j < IW_IE_CYPHER_NUM; j++ )
{ {
if( e->crypto.pair_ciphers & (1<<j) ) if( e->crypto.pair_ciphers & (1<<j) )
{ {
lua_pushstring(L, (j < IW_IE_CYPHER_NUM) lua_pushstring(L, iw_ie_cypher_name[j]);
? iw_ie_cypher_name[j] : "Proprietary");
lua_rawseti(L, -2, y++); lua_rawseti(L, -2, y++);
} }
} }
lua_setfield(L, -2, "pair_ciphers"); lua_setfield(L, -2, "pair_ciphers");
lua_newtable(L); lua_newtable(L);
for( j = 0, y = 1; j < 8; j++ ) for( j = 0, y = 1; j < IW_IE_KEY_MGMT_NUM; j++ )
{ {
if( e->crypto.auth_suites & (1<<j) ) if( e->crypto.auth_suites & (1<<j) )
{ {
lua_pushstring(L, (j < IW_IE_KEY_MGMT_NUM) lua_pushstring(L, iw_ie_key_mgmt_name[j]);
? iw_ie_key_mgmt_name[j] : "Proprietary");
lua_rawseti(L, -2, y++); lua_rawseti(L, -2, y++);
} }
} }