mod_c2s, mod_s2s, mod_component, util.xmppstream: Move all session:open_stream() functions to util.xmppstream

This commit is contained in:
Kim Alvefur 2014-04-10 13:13:07 +02:00
parent 5d027d7f71
commit e06966ee43
4 changed files with 17 additions and 37 deletions

View file

@ -177,9 +177,7 @@ function stream_callbacks.streamopened(session, attr)
session.streamid = uuid_gen();
session.notopen = nil;
-- Return stream header
session.send("<?xml version='1.0'?>");
session.send(st.stanza("stream:stream", { xmlns=xmlns_component,
["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.host }):top_tag());
session:open_stream();
end
function stream_callbacks.streamclosed(session)