mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_s2s: Remove check for socket.tcp6()
This commit is contained in:
parent
bb98bf4a58
commit
e6bf33e872
1 changed files with 0 additions and 4 deletions
|
@ -282,10 +282,6 @@ function s2sout.make_connect(host_session, connect_host, connect_port)
|
|||
if connect_host.proto == "IPv4" then
|
||||
conn, handler = socket.tcp();
|
||||
else
|
||||
if not socket.tcp6 then
|
||||
log("warn", "Could not connect to "..to_host..". Your version of lua-socket does not support IPv6");
|
||||
return false, "no-ipv6";
|
||||
end
|
||||
conn, handler = socket.tcp6();
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue