diff options
author | Kim Alvefur <zash@zash.se> | 2015-09-24 20:15:19 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-09-24 20:15:19 +0200 |
commit | 8a539ac1ee9de45326aabefaa124bc7792134521 (patch) | |
tree | 12d7f0ee52b21fe124cc849278902ba715a35b32 /plugins/mod_s2s | |
parent | 5dcb0569722d6feea8942fd5acc8af7805060f8b (diff) | |
parent | fabb7c056162683bf2da290348bf3c1efaa9e672 (diff) | |
download | prosody-8a539ac1ee9de45326aabefaa124bc7792134521.tar.gz prosody-8a539ac1ee9de45326aabefaa124bc7792134521.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 68042a5d..ff8ef45d 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -354,8 +354,13 @@ function stream_callbacks.streamopened(session, attr) (session.log or log)("warn", "No 'to' on stream header from %s means we can't offer any features", from or session.ip or "unknown host"); end - log("debug", "Sending stream features: %s", tostring(features)); - session.sends2s(features); + if ( session.type == "s2sin" or session.type == "s2sout" ) or features.tags[1] then + log("debug", "Sending stream features: %s", tostring(features)); + session.sends2s(features); + else + (session.log or log)("warn", "No features to offer, giving up"); + session:close({ condition = "undefined-condition", text = "No features to offer" }); + end end elseif session.direction == "outgoing" then session.notopen = nil; |