mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_websocket: handle full frame buffer and raise stream error
This commit is contained in:
parent
5a1c206ece
commit
a4e9e4815c
1 changed files with 5 additions and 1 deletions
|
@ -275,7 +275,11 @@ function handle_request(event)
|
|||
-- max frame header is 22 bytes
|
||||
local frameBuffer = dbuffer.new(stanza_size_limit + 22, frame_fragment_limit);
|
||||
add_filter(session, "bytes/in", function(data)
|
||||
frameBuffer:write(data);
|
||||
if not frameBuffer:write(data) then
|
||||
session.log("warn", "websocket frame buffer full - terminating session");
|
||||
session:close({ condition = "resource-constraint", text = "frame buffer exceeded" });
|
||||
return;
|
||||
end
|
||||
|
||||
local cache = {};
|
||||
local frame, length = parse_frame(frameBuffer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue