Software /
code /
prosody
Comparison
core/s2smanager.lua @ 243:09a80c8b2d73
Change sending reply stream header to use top_tag()
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 13 Nov 2008 03:48:20 +0000 |
parent | 241:021ccf988f3b |
child | 244:0e3bda34f958 |
comparison
equal
deleted
inserted
replaced
242:f15afbcbc55c | 243:09a80c8b2d73 |
---|---|
131 session.from_host = attr.from; | 131 session.from_host = attr.from; |
132 | 132 |
133 session.streamid = uuid_gen(); | 133 session.streamid = uuid_gen(); |
134 print(session, session.from_host, "incoming s2s stream opened"); | 134 print(session, session.from_host, "incoming s2s stream opened"); |
135 send("<?xml version='1.0'?>"); | 135 send("<?xml version='1.0'?>"); |
136 send(format("<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' id='%s' from='%s'>", session.streamid, session.to_host)); | 136 send(stanza("stream:stream", { xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback', ["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.to_host })); |
137 elseif session.direction == "outgoing" then | 137 elseif session.direction == "outgoing" then |
138 -- If we are just using the connection for verifying dialback keys, we won't try and auth it | 138 -- If we are just using the connection for verifying dialback keys, we won't try and auth it |
139 if not attr.id then error("stream response did not give us a streamid!!!"); end | 139 if not attr.id then error("stream response did not give us a streamid!!!"); end |
140 session.streamid = attr.id; | 140 session.streamid = attr.id; |
141 | 141 |