plugins/mod_bosh.lua
changeset 8528 7be8f649d97d
parent 8527 81fff93d3bc6
child 8597 b4a0bc46c82d
--- 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));