mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Continue to process data already in the buffer after an error occurs
Previously any error, or even a normal websocket close frame, would return early, leaving potentially entire frames in the buffer unprocessed and then discarded. This change stops processing new data, but returns an existing processed data up to the point of the error/close.
This commit is contained in:
parent
e7f545bae6
commit
15aaf9446b
1 changed files with 1 additions and 1 deletions
|
@ -291,7 +291,7 @@ function handle_request(event)
|
|||
end
|
||||
frameBuffer:discard(length);
|
||||
local result = handle_frame(frame);
|
||||
if not result then return; end
|
||||
if not result then break; end
|
||||
cache[#cache+1] = filter_open_close(result);
|
||||
frame, length = parse_frame(frameBuffer);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue