Commit e28cf8d9 authored by vsky's avatar vsky Committed by Marcel Stör
Browse files

Fixes `net.ifinfo` failure

parent e7620b06
...@@ -983,7 +983,10 @@ field_from_ipaddr(lua_State *L, const char * field_name, ip_addr_t* addr) { ...@@ -983,7 +983,10 @@ field_from_ipaddr(lua_State *L, const char * field_name, ip_addr_t* addr) {
static int net_ifinfo( lua_State* L ) { static int net_ifinfo( lua_State* L ) {
int ifidx = luaL_optint(L, 1, 0); int ifidx = luaL_optint(L, 1, 0);
if (ifidx != 0 && ifidx != 1) {
return 0;
}
struct netif * nif = eagle_lwip_getif(ifidx); struct netif * nif = eagle_lwip_getif(ifidx);
if (nif == NULL) { if (nif == NULL) {
return 0; return 0;
...@@ -1004,8 +1007,8 @@ static int net_ifinfo( lua_State* L ) { ...@@ -1004,8 +1007,8 @@ static int net_ifinfo( lua_State* L ) {
field_from_ipaddr(L, "server_ip" , &nif->dhcp->server_ip_addr ); field_from_ipaddr(L, "server_ip" , &nif->dhcp->server_ip_addr );
field_from_ipaddr(L, "client_ip" , &nif->dhcp->offered_ip_addr ); field_from_ipaddr(L, "client_ip" , &nif->dhcp->offered_ip_addr );
field_from_ipaddr(L, "ntp_server", &nif->dhcp->offered_ntp_addr); field_from_ipaddr(L, "ntp_server", &nif->dhcp->offered_ntp_addr);
lua_setfield(L, -2, "dhcp");
} }
lua_setfield(L, -2, "dhcp");
return 1; return 1;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment