aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-11-19 05:13:07 +0000
committerMatthew Wild <mwild1@gmail.com>2008-11-19 05:13:07 +0000
commitb27c56326695c39a06d9d6fb1b8982c4f23b82f7 (patch)
treef2cfb99f290f3a842541c8fd079e0f88c646bb6e /core/s2smanager.lua
parent9ab64fc855ca26144480ba5a9d24c3653cd2fc4d (diff)
downloadprosody-b27c56326695c39a06d9d6fb1b8982c4f23b82f7.tar.gz
prosody-b27c56326695c39a06d9d6fb1b8982c4f23b82f7.zip
Send version=1.0 in s2s stream header. Send s2s stream:features when in 1.0 mode.
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua29
1 files changed, 17 insertions, 12 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 7d07ad7a..a61157c0 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -160,12 +160,28 @@ function streamopened(session, attr)
session.streamid = uuid_gen();
print(session, session.from_host, "incoming s2s stream opened");
send("<?xml version='1.0'?>");
- 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());
+ send(stanza("stream:stream", { version = '1.0', xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback', ["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.to_host }):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("host-unknown");
return;
end
+ if session.version >= 1.0 then
+ send(st.stanza("stream:features")
+ :tag("dialback", { xmlns='urn:xmpp:features:dialback' }):tag("optional"):up():up());
+ end
+ --[[
+ local features = {};
+ modulemanager.fire_event("stream-features-s2s", session, features);
+
+ send("<stream:features>");
+
+ for _, feature in ipairs(features) do
+ send(tostring(feature));
+ end
+
+ send("</stream:features>");
+ ]]
elseif session.direction == "outgoing" then
-- If we are just using the connection for verifying dialback keys, we won't try and auth it
if not attr.id then error("stream response did not give us a streamid!!!"); end
@@ -177,17 +193,6 @@ function streamopened(session, attr)
mark_connected(session);
end
end
- --[[
- local features = {};
- modulemanager.fire_event("stream-features-s2s", session, features);
-
- send("<stream:features>");
-
- for _, feature in ipairs(features) do
- send(tostring(feature));
- end
-
- send("</stream:features>");]]
session.notopen = nil;
end