diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-09-29 13:58:32 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-09-29 13:58:32 +0100 |
commit | 3cd5ae91199caf59972c2d6d953fa3619da8a552 (patch) | |
tree | 7e28d1987edb00b4ce1ff58656e0bd984dee1784 /net/websocket/frames.lua | |
parent | fb2a77467f01351f3b88d45b436fd7420eba90dc (diff) | |
download | prosody-3cd5ae91199caf59972c2d6d953fa3619da8a552.tar.gz prosody-3cd5ae91199caf59972c2d6d953fa3619da8a552.zip |
net.websocket.frames: Additionally return partial frame if there is one
Diffstat (limited to 'net/websocket/frames.lua')
-rw-r--r-- | net/websocket/frames.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/websocket/frames.lua b/net/websocket/frames.lua index 65f9122c..a0c0d4cd 100644 --- a/net/websocket/frames.lua +++ b/net/websocket/frames.lua @@ -141,7 +141,7 @@ end local function parse_frame(frame) local result, pos = parse_frame_header(frame); - if result == nil or #frame < (pos + result.length) then return; end + if result == nil or #frame < (pos + result.length) then return nil, nil, result; end result.data = parse_frame_body(frame, result, pos+1); return result, pos + result.length; end |