aboutsummaryrefslogtreecommitdiffstats
path: root/net/http/parser.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2014-09-03 18:49:41 +0100
committerMatthew Wild <mwild1@gmail.com>2014-09-03 18:49:41 +0100
commitd8be2de62de4863557aeb0add87a53f60447f4ff (patch)
tree6bf3157776667627934fb3902ac8de18ef2df5b4 /net/http/parser.lua
parent6bceea0b5cc310d948a0571b9a0bb3216cb2763f (diff)
downloadprosody-d8be2de62de4863557aeb0add87a53f60447f4ff.tar.gz
prosody-d8be2de62de4863557aeb0add87a53f60447f4ff.zip
net.http.parser: Support status code 101 and allow handling of the received data by someone else
Diffstat (limited to 'net/http/parser.lua')
-rw-r--r--net/http/parser.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua
index f9e6cea0..d896dff4 100644
--- a/net/http/parser.lua
+++ b/net/http/parser.lua
@@ -140,7 +140,11 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb)
break;
end
elseif len and #buf >= len then
- packet.body, buf = buf:sub(1, len), buf:sub(len + 1);
+ if packet.code == 101 then
+ packet.body, buf = buf, ""
+ else
+ packet.body, buf = buf:sub(1, len), buf:sub(len + 1);
+ end
state = nil; success_cb(packet);
else
break;