Software /
code /
prosody
Diff
plugins/mod_s2s/s2sout.lib.lua @ 5355:11eff33f60d3
Merge 0.9->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 20 Mar 2013 20:34:38 +0000 |
parent | 5351:901ed253bbf7 |
child | 5386:43059357b2f0 |
line wrap: on
line diff
--- a/plugins/mod_s2s/s2sout.lib.lua Tue Mar 12 12:30:35 2013 +0000 +++ b/plugins/mod_s2s/s2sout.lib.lua Wed Mar 20 20:34:38 2013 +0000 @@ -44,15 +44,9 @@ return a.priority < b.priority or (a.priority == b.priority and a.weight > b.weight); end -local function session_open_stream(session, from, to) - session.sends2s(st.stanza("stream:stream", { - xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback', - ["xmlns:stream"]='http://etherx.jabber.org/streams', - from=from, to=to, version='1.0', ["xml:lang"]='en'}):top_tag()); -end - function s2sout.initiate_connection(host_session) initialize_filters(host_session); + host_session.version = 1; host_session.open_stream = session_open_stream; -- Kick the connection attempting machine into life