core: Increase default read size to "all of it", in practice 8K (size of LuaSockets buffer)

This commit is contained in:
Kim Alvefur 2016-01-10 23:25:00 +01:00
parent fa211588ac
commit 14d035cf43

View file

@ -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