diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-15 21:25:59 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-15 21:25:59 +0100 |
commit | 0ff78f556e80e25c6d9ddebb0c629c96c80b35c5 (patch) | |
tree | 4458cad42819d93c49bb5bed4a279ea396438161 | |
parent | 992ed43b25a7197bc62b1e002ec30b7c1f76370e (diff) | |
download | prosody-0ff78f556e80e25c6d9ddebb0c629c96c80b35c5.tar.gz prosody-0ff78f556e80e25c6d9ddebb0c629c96c80b35c5.zip |
net.http.parser: Remove accidentally-committed debugging
-rw-r--r-- | net/http/parser.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/http/parser.lua b/net/http/parser.lua index 9688e052..f9e6cea0 100644 --- a/net/http/parser.lua +++ b/net/http/parser.lua @@ -133,7 +133,6 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb) buf = buf:gsub("^.-\r\n\r\n", ""); -- This ensure extensions and trailers are stripped success_cb(packet); elseif #buf - chunk_start + 2 >= chunk_size then -- we have a chunk - print(chunk_start, chunk_size, ("%q"):format(buf)) packet.body = packet.body..buf:sub(chunk_start, chunk_start + (chunk_size-1)); buf = buf:sub(chunk_start + chunk_size + 2); chunk_size, chunk_start = nil, nil; |