diff options
-rw-r--r-- | core/s2smanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index af5e91e3..a24f2b2d 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -327,7 +327,7 @@ function make_connect(host_session, connect_host, connect_port) local w, log = conn.write, host_session.log; host_session.sends2s = function (t) log("debug", "sending: %s", (t.top_tag and t:top_tag()) or t:match("^[^>]*>?")); w(conn, tostring(t)); end - host_session:open_stream(); + host_session:open_stream(from_host, to_host); log("debug", "Connection attempt in progress..."); add_task(connect_timeout, function () |