Software /
code /
prosody
Changeset
8525:7be8f649d97d
mod_bosh: Return implicit 404 instead of the proper BOSH terminate thing
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 27 Dec 2017 01:00:34 +0100 |
parents | 8524:81fff93d3bc6 |
children | 8526:f1a46eef9df1 |
files | plugins/mod_bosh.lua |
diffstat | 1 files changed, 3 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_bosh.lua Wed Dec 13 15:34:53 2017 +0100 +++ b/plugins/mod_bosh.lua Wed Dec 27 01:00:34 2017 +0100 @@ -283,12 +283,9 @@ response:send(tostring(close_reply)); return; elseif to_host ~= module.host then - -- Unknown host - log("debug", "BOSH client tried to connect to unknown host: %s", tostring(attr.to)); - local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate", - ["xmlns:stream"] = xmlns_streams, condition = "host-unknown" }); - response:send(tostring(close_reply)); - return; + -- Could be meant for a different instance of the module + -- if multiple instances are loaded with the same URL then this can happen + return; --> 404 end if not rid or (not wait and attr.wait or wait < 0 or wait % 1 ~= 0) then log("debug", "BOSH client sent invalid rid or wait attributes: rid=%s, wait=%s", tostring(attr.rid), tostring(attr.wait));