mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http.parser: Allow configuration of the chunk size fed to the parser
This commit is contained in:
parent
76dd86054c
commit
54e37ffe8d
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,8 @@
|
|||
local http_parser = require "net.http.parser";
|
||||
local sha1 = require "util.hashes".sha1;
|
||||
|
||||
local parser_input_bytes = 3;
|
||||
|
||||
local function CRLF(s)
|
||||
return (s:gsub("\n", "\r\n"));
|
||||
end
|
||||
|
@ -14,7 +16,7 @@ local function test_stream(stream, expect)
|
|||
end);
|
||||
|
||||
local parser = http_parser.new(success_cb, error, stream:sub(1,4) == "HTTP" and "client" or "server")
|
||||
for chunk in stream:gmatch("..?.?") do
|
||||
for chunk in stream:gmatch("."..string.rep(".?", parser_input_bytes-1)) do
|
||||
parser:feed(chunk);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue