mod_component: Send <?xml on initial stream (thanks xnyhps)

This commit is contained in:
Matthew Wild 2012-04-30 00:42:02 +01:00
parent c131f204d9
commit ba8ef0d839

View file

@ -158,6 +158,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());
end