mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_bosh: Ensure that stream is directed to a VirtualHost (fixes #425)
This commit is contained in:
parent
8f2b039615
commit
62eee94e2b
1 changed files with 16 additions and 0 deletions
|
@ -277,6 +277,22 @@ function stream_callbacks.streamopened(context, attr)
|
|||
return;
|
||||
end
|
||||
|
||||
if not prosody.hosts[to_host] then
|
||||
log("debug", "BOSH client tried to connect to non-existant host: %s", attr.to);
|
||||
local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
|
||||
["xmlns:stream"] = xmlns_streams, condition = "improper-addressing" });
|
||||
response:send(tostring(close_reply));
|
||||
return;
|
||||
end
|
||||
|
||||
if prosody.hosts[to_host].type ~= "local" then
|
||||
log("debug", "BOSH client tried to connect to %s host: %s", prosody.hosts[to_host].type, attr.to);
|
||||
local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
|
||||
["xmlns:stream"] = xmlns_streams, condition = "improper-addressing" });
|
||||
response:send(tostring(close_reply));
|
||||
return;
|
||||
end
|
||||
|
||||
local wait = tonumber(attr.wait);
|
||||
if not rid or (not attr.wait or not 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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue