mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dependencies: Add compat code for normalization of socket constructors
Old LuaSocket had only tcp() which was IPv4-only. LuaSocket ~3.0 adds a tcp6() that creates a IPv6 socket. Some version moves tcp() to tcp4() and adds an IP-version-agnostic tcp() constructor.
This commit is contained in:
parent
06cdd9edcd
commit
284152ba25
1 changed files with 4 additions and 0 deletions
|
@ -77,6 +77,10 @@ local function check_dependencies()
|
|||
["Source"] = "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/";
|
||||
});
|
||||
fatal = true;
|
||||
elseif not socket.tcp4 then
|
||||
-- COMPAT LuaSocket before being IP-version agnostic
|
||||
socket.tcp4 = socket.tcp;
|
||||
socket.udp4 = socket.udp;
|
||||
end
|
||||
|
||||
local lfs, err = softreq "lfs"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue