mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core: Increase default read size to "all of it", in practice 8K (size of LuaSockets buffer)
This commit is contained in:
parent
fa211588ac
commit
14d035cf43
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ if socket.tcp6 and config.get("*", "use_ipv6") ~= false then
|
|||
table.insert(default_local_interfaces, "::1");
|
||||
end
|
||||
|
||||
local default_mode = config.get("*", "network_default_read_size") or 4096;
|
||||
local default_mode = config.get("*", "network_default_read_size") or "*a";
|
||||
|
||||
--- Private state
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue