aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-04-22 21:56:06 +0200
committerKim Alvefur <zash@zash.se>2014-04-22 21:56:06 +0200
commit13d11d6735a28f23475727483b8c9b13f93d0f81 (patch)
tree5cb53df6522acc65b24cf9532c391e83f8fb8f22
parent2b09f7cffb7c04ec127d75b2776d8938f8ac2441 (diff)
downloadprosody-13d11d6735a28f23475727483b8c9b13f93d0f81.tar.gz
prosody-13d11d6735a28f23475727483b8c9b13f93d0f81.zip
mod_s2s: Follow XMPP Core on when a stream is to be considered ready
-rw-r--r--plugins/mod_s2s/mod_s2s.lua12
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua
index 73d95970..263f24c0 100644
--- a/plugins/mod_s2s/mod_s2s.lua
+++ b/plugins/mod_s2s/mod_s2s.lua
@@ -150,6 +150,13 @@ function module.add_host(module)
module:hook("route/remote", route_to_new_session, -10);
module:hook("s2s-authenticated", make_authenticated, -1);
module:hook("s2s-read-timeout", keepalive, -1);
+ module:hook_stanza("http://etherx.jabber.org/streams", "features", function (session, stanza)
+ if session.type == "s2sout" then
+ -- Stream is authenticated and we are seem to be done with feature negotiation,
+ -- so the stream is ready for stanzas. RFC 6120 Section 4.3
+ mark_connected(session);
+ end
+ end, -1);
end
-- Stream is authorised, and ready for normal stanzas
@@ -219,7 +226,10 @@ function make_authenticated(event)
end
session.log("debug", "connection %s->%s is now authenticated for %s", session.from_host, session.to_host, host);
- mark_connected(session);
+ if (session.type == "s2sout" and session.external_auth ~= "succeeded") or session.type == "s2sin" then
+ -- Stream either used dialback for authentication or is an incoming stream.
+ mark_connected(session);
+ end
return true;
end