mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_s2s: Do not include xmlns:db declaration in stream header if mod_dialback is not loaded
This commit is contained in:
parent
404b1966b1
commit
740e6e69a2
1 changed files with 2 additions and 1 deletions
|
@ -249,7 +249,8 @@ function stream_callbacks.streamopened(session, attr)
|
|||
if session.secure and not session.cert_chain_status then check_cert_status(session); end
|
||||
|
||||
send("<?xml version='1.0'?>");
|
||||
send(st.stanza("stream:stream", { xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback',
|
||||
send(st.stanza("stream:stream", { xmlns='jabber:server',
|
||||
["xmlns:db"]= hosts[to].modules.dialback and 'jabber:server:dialback' or nil,
|
||||
["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=to, to=from, version=(session.version > 0 and "1.0" or nil) }):top_tag());
|
||||
if session.version >= 1.0 then
|
||||
local features = st.stanza("stream:features");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue