mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_s2s/s2sout.lib: Only attempt to create an IPv6 socket if LuaSocket supports IPv6
This commit is contained in:
parent
c4d2d22648
commit
28e1592c0c
1 changed files with 5 additions and 2 deletions
|
@ -276,10 +276,13 @@ function s2sout.make_connect(host_session, connect_host, connect_port)
|
|||
host_session.secure = nil;
|
||||
|
||||
local conn, handler;
|
||||
if connect_host.proto == "IPv4" then
|
||||
local proto = connect_host.proto;
|
||||
if proto == "IPv4" then
|
||||
conn, handler = socket.tcp();
|
||||
else
|
||||
elseif proto == "IPv6" and socket.tcp6 then
|
||||
conn, handler = socket.tcp6();
|
||||
else
|
||||
handler = "Unsupported protocol: "..tostring(proto);
|
||||
end
|
||||
|
||||
if not conn then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue