mod_admin_socket: Compat for luasocket prior to unix datagram support

The "socket.unix" module exported only a function before
aa1b8cc9bc
when datagram support was added.

Fixes #1717

Thanks rsc and lucas for reporting and testing
This commit is contained in:
Kim Alvefur 2022-03-15 10:48:46 +01:00
parent ba11d64191
commit 8e5fec3220
2 changed files with 6 additions and 0 deletions

View file

@ -2,6 +2,9 @@ module:set_global();
local have_unix, unix = pcall(require, "socket.unix");
if have_unix and type(unix) == "function" then
unix = { stream = unix };
end
if not have_unix or type(unix) ~= "table" then
module:log_status("error", "LuaSocket unix socket support not available or incompatible, ensure it is up to date");
return;

View file

@ -139,6 +139,9 @@ end
local function new_connection(socket_path, listeners)
local have_unix, unix = pcall(require, "socket.unix");
if have_unix and type(unix) == "function" then
unix = { stream = unix };
end
if type(unix) ~= "table" then
have_unix = false;
end