# HG changeset patch # User Paul Aurich # Date 1254637380 25200 # Node ID b7c838a1b0ca94c9d0329be9b0d3ef2258cf8a00 # Parent 53f34ba6f6d66b52e742297b5dcca2c36c63b758 Specify XMPP version on response stream to incoming s2s connection. diff -r 53f34ba6f6d6 -r b7c838a1b0ca core/s2smanager.lua --- a/core/s2smanager.lua Sat Oct 03 19:20:20 2009 -0700 +++ b/core/s2smanager.lua Sat Oct 03 23:23:00 2009 -0700 @@ -352,7 +352,7 @@ (session.log or log)("debug", "incoming s2s received "); send(""); 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 }):top_tag()); + ["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.to_host, version="1.0" }):top_tag()); if session.to_host and not hosts[session.to_host] then -- Attempting to connect to a host we don't serve session:close({ condition = "host-unknown"; text = "This host does not serve "..session.to_host });