mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_bosh: Handle missing wait attribute (fixes #1288)
250855633092 did not fix this completely.
This commit is contained in:
parent
9fbf2fad48
commit
5cd064035a
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ function stream_callbacks.streamopened(context, attr)
|
||||||
response:send(tostring(close_reply));
|
response:send(tostring(close_reply));
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
if not rid or (not wait and attr.wait or wait < 0 or wait % 1 ~= 0) then
|
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));
|
log("debug", "BOSH client sent invalid rid or wait attributes: rid=%s, wait=%s", tostring(attr.rid), tostring(attr.wait));
|
||||||
local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
|
local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate",
|
||||||
["xmlns:stream"] = xmlns_streams, condition = "bad-request" });
|
["xmlns:stream"] = xmlns_streams, condition = "bad-request" });
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue