diff options
author | Kim Alvefur <zash@zash.se> | 2014-09-09 15:05:46 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-09-09 15:05:46 +0200 |
commit | ccb4b3e4930cbcb860d80c4ed91e57cec36d2d30 (patch) | |
tree | 5bd9c8e96405049d9351ba61e790fcb30bb9a0e8 /plugins/mod_s2s | |
parent | c298ff7fb454df9f575cf45c66ceca8341c47818 (diff) | |
download | prosody-ccb4b3e4930cbcb860d80c4ed91e57cec36d2d30.tar.gz prosody-ccb4b3e4930cbcb860d80c4ed91e57cec36d2d30.zip |
core.stanza_router, mod_s2s: Move handling of S2S features to mod_s2s from stanza_router
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 0a2b5bb7..7ff921d9 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -153,6 +153,7 @@ function module.add_host(module) -- 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); + return true; end end, -1); end |