diff options
author | Kim Alvefur <zash@zash.se> | 2023-03-17 18:03:07 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-03-17 18:03:07 +0100 |
commit | 8136aa749a76e4fbb5b7e3cc34c878733647b8e9 (patch) | |
tree | 7e71cc9519d75ff95f99425922a9f710b2cad674 /util-src/net.c | |
parent | 43531740f99da82f023bee26d954fc71bde94635 (diff) | |
download | prosody-8136aa749a76e4fbb5b7e3cc34c878733647b8e9.tar.gz prosody-8136aa749a76e4fbb5b7e3cc34c878733647b8e9.zip |
util: Add compat for prosody module name change to C sources
Diffstat (limited to 'util-src/net.c')
-rw-r--r-- | util-src/net.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util-src/net.c b/util-src/net.c index 96b50e7b..1a84c882 100644 --- a/util-src/net.c +++ b/util-src/net.c @@ -189,7 +189,7 @@ static int lc_ntop(lua_State *L) { return 1; } -int luaopen_util_net(lua_State *L) { +int luaopen_prosody_util_net(lua_State *L) { luaL_checkversion(L); luaL_Reg exports[] = { { "local_addresses", lc_local_addresses }, @@ -202,3 +202,6 @@ int luaopen_util_net(lua_State *L) { luaL_setfuncs(L, exports, 0); return 1; } +int luaopen_util_net(lua_State *L) { + return luaopen_prosody_util_net(L); +} |