mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
ba11d64191
commit
8e5fec3220
2 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue