mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check for typos.
This commit is contained in:
parent
9ced42c9fb
commit
c506269ff5
11 changed files with 11 additions and 11 deletions
|
@ -30,7 +30,7 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb)
|
|||
if not parser_type or parser_type == "server" then client = false; else assert(parser_type == "client", "Invalid parser type"); end
|
||||
local bodylimit = tonumber(options_cb and options_cb().body_size_limit) or 10*1024*1024;
|
||||
-- https://stackoverflow.com/a/686243
|
||||
-- Indiviual headers can be up to 16k? What madness?
|
||||
-- Individual headers can be up to 16k? What madness?
|
||||
local headlimit = tonumber(options_cb and options_cb().head_size_limit) or 10*1024;
|
||||
local buflimit = tonumber(options_cb and options_cb().buffer_size_limit) or bodylimit * 2;
|
||||
local buffer = dbuffer.new(buflimit);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue