diff options
author | Kim Alvefur <zash@zash.se> | 2016-01-10 23:25:00 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-01-10 23:25:00 +0100 |
commit | 656287afd88564bfec4250bc2f77497f877c8f42 (patch) | |
tree | 8842113c5b6274fd6b6a4d5e46d08370d5e80ee2 | |
parent | b46dc8fc37e92651098c72fefa6fc64a29691f16 (diff) | |
download | prosody-656287afd88564bfec4250bc2f77497f877c8f42.tar.gz prosody-656287afd88564bfec4250bc2f77497f877c8f42.zip |
core: Increase default read size to "all of it", in practice 8K (size of LuaSockets buffer)
-rw-r--r-- | core/portmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/portmanager.lua b/core/portmanager.lua index 421d7fc6..37442a31 100644 --- a/core/portmanager.lua +++ b/core/portmanager.lua @@ -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 |