mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
parent
8e5fec3220
commit
7badf61246
2 changed files with 12 additions and 0 deletions
|
@ -3,6 +3,12 @@ module:set_global();
|
|||
local have_unix, unix = pcall(require, "socket.unix");
|
||||
|
||||
if have_unix and type(unix) == "function" then
|
||||
-- COMPAT #1717
|
||||
-- Before the introduction of datagram support, only the stream socket
|
||||
-- constructor was exported instead of a module table. Due to the lack of a
|
||||
-- proper release of LuaSocket, distros have settled on shipping either the
|
||||
-- last RC tag or some commit since then.
|
||||
-- Here we accomodate both variants.
|
||||
unix = { stream = unix };
|
||||
end
|
||||
if not have_unix or type(unix) ~= "table" then
|
||||
|
|
|
@ -140,6 +140,12 @@ end
|
|||
local function new_connection(socket_path, listeners)
|
||||
local have_unix, unix = pcall(require, "socket.unix");
|
||||
if have_unix and type(unix) == "function" then
|
||||
-- COMPAT #1717
|
||||
-- Before the introduction of datagram support, only the stream socket
|
||||
-- constructor was exported instead of a module table. Due to the lack of a
|
||||
-- proper release of LuaSocket, distros have settled on shipping either the
|
||||
-- last RC tag or some commit since then.
|
||||
-- Here we accomodate both variants.
|
||||
unix = { stream = unix };
|
||||
end
|
||||
if type(unix) ~= "table" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue