# HG changeset patch # User Matthew Wild # Date 1262626346 0 # Node ID affeb565b050219f23cb2e552d1c393f762ffa63 # Parent 83773aed9437fb9bc5f89cb260db4e84cf0f9348 s2smanager: Allow new_outgoing() to create sessions without automatically connecting them (set 3rd parameters to false) diff -r 83773aed9437 -r affeb565b050 core/s2smanager.lua --- a/core/s2smanager.lua Sun Jan 03 11:26:36 2010 -0800 +++ b/core/s2smanager.lua Mon Jan 04 17:32:26 2010 +0000 @@ -148,7 +148,7 @@ return session; end -function new_outgoing(from_host, to_host) +function new_outgoing(from_host, to_host, connect) local host_session = { to_host = to_host, from_host = from_host, host = from_host, notopen = true, type = "s2sout_unauthed", direction = "outgoing" }; @@ -161,8 +161,10 @@ host_session.log = log; end - -- Kick the connection attempting machine - attempt_connection(host_session); + if connect ~= false then + -- Kick the connection attempting machine into life + attempt_connection(host_session); + end if not host_session.sends2s then -- A sends2s which buffers data (until the stream is opened)