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 | 4836410c4fe46e33f5c4e9afbee74edaedd6f86f (patch) | |
tree | 7e28d1987edb00b4ce1ff58656e0bd984dee1784 | |
parent | 15aaf9446b9c50e5c5f18307ef39d3ae9ab25f6b (diff) | |
download | prosody-4836410c4fe46e33f5c4e9afbee74edaedd6f86f.tar.gz prosody-4836410c4fe46e33f5c4e9afbee74edaedd6f86f.zip |
net.websocket.frames: Additionally return partial frame if there is one
-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 |