mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
s2smanager: Fix traceback when socket.tcp6 isn't available
This commit is contained in:
parent
bc79812f6c
commit
ba9e28535b
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ function make_connect(host_session, connect_host, connect_port)
|
|||
local conn, handler;
|
||||
if connect_host.proto == "IPv4" then
|
||||
conn, handler = socket.tcp();
|
||||
else
|
||||
elseif socket.tcp6 then
|
||||
conn, handler = socket.tcp6();
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue