mod_s2s: Remove check for socket.tcp6()

This commit is contained in:
Kim Alvefur 2012-05-29 18:04:29 +02:00
parent bb98bf4a58
commit e6bf33e872

View file

@ -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