Move the wifi_ap_getconfig function to its correct place in the Lua tables (wifi.ap, not wifi.sta).

This commit is contained in:
Sergey Zakharchenko 2015-09-23 16:19:15 +03:00
parent bb9dd62882
commit ea775a69ec
1 changed files with 1 additions and 1 deletions

View File

@ -1105,7 +1105,6 @@ static const LUA_REG_TYPE wifi_station_map[] =
{ LSTRKEY( "connect" ), LFUNCVAL ( wifi_station_connect4lua ) },
{ LSTRKEY( "disconnect" ), LFUNCVAL ( wifi_station_disconnect4lua ) },
{ LSTRKEY( "autoconnect" ), LFUNCVAL ( wifi_station_setauto ) },
{ LSTRKEY( "getconfig" ), LFUNCVAL( wifi_ap_getconfig ) },
{ LSTRKEY( "getip" ), LFUNCVAL ( wifi_station_getip ) },
{ LSTRKEY( "setip" ), LFUNCVAL ( wifi_station_setip ) },
{ LSTRKEY( "getbroadcast" ), LFUNCVAL ( wifi_station_getbroadcast) },
@ -1126,6 +1125,7 @@ static const LUA_REG_TYPE wifi_ap_dhcp_map[] =
static const LUA_REG_TYPE wifi_ap_map[] =
{
{ LSTRKEY( "getconfig" ), LFUNCVAL( wifi_ap_getconfig ) },
{ LSTRKEY( "config" ), LFUNCVAL( wifi_ap_config ) },
{ LSTRKEY( "getip" ), LFUNCVAL ( wifi_ap_getip ) },
{ LSTRKEY( "setip" ), LFUNCVAL ( wifi_ap_setip ) },