diff options
author | Kim Alvefur <zash@zash.se> | 2013-08-30 16:14:31 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-08-30 16:14:31 +0200 |
commit | 23b581bb094c1dcd18043d40667b97c4469ad48b (patch) | |
tree | 8d6c5c8e8e518ee5e145a1a25350c2e2fa3c5f2e /util-src/net.c | |
parent | f88ac57234e630e545a8b220a1e3da82f39f1d6b (diff) | |
download | prosody-23b581bb094c1dcd18043d40667b97c4469ad48b.tar.gz prosody-23b581bb094c1dcd18043d40667b97c4469ad48b.zip |
util.net: Fix s2sout on Windows (return 0.0.0.0 and :: instead of an empty list)
Diffstat (limited to 'util-src/net.c')
-rw-r--r-- | util-src/net.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/util-src/net.c b/util-src/net.c index 09ba92b8..e307c628 100644 --- a/util-src/net.c +++ b/util-src/net.c @@ -42,8 +42,8 @@ static int lc_local_addresses(lua_State *L) const long ip4_linklocal = htonl(0xa9fe0000); /* 169.254.0.0 */ const long ip4_mask = htonl(0xffff0000); struct ifaddrs *addr = NULL, *a; - int n = 1; #endif + int n = 1; int type = luaL_checkoption(L, 1, "both", type_strings); const char link_local = lua_toboolean(L, 2); /* defaults to 0 (false) */ const char ipv4 = (type == 0 || type == 1); @@ -92,6 +92,15 @@ static int lc_local_addresses(lua_State *L) } freeifaddrs(addr); +#else + if (ipv4) { + lua_pushstring(L, "0.0.0.0"); + lua_rawseti(L, -2, n++); + } + if (ipv6) { + lua_pushstring(L, "::"); + lua_rawseti(L, -2, n++); + } #endif return 1; } |