diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-03-30 08:44:55 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-03-30 08:44:55 +0100 |
commit | 4139766d57cd7f0fb6c031b98bef48fa416b722f (patch) | |
tree | 4176b81d7252ab0337c11f4a392e2e22866821a2 /core/portmanager.lua | |
parent | 3e29d50b35f71b11feaaf3eb5d9b05813baf45c1 (diff) | |
download | prosody-4139766d57cd7f0fb6c031b98bef48fa416b722f.tar.gz prosody-4139766d57cd7f0fb6c031b98bef48fa416b722f.zip |
portmanager: Make maximum read size configurable, and default to 4KB
Diffstat (limited to 'core/portmanager.lua')
-rw-r--r-- | core/portmanager.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/portmanager.lua b/core/portmanager.lua index 7a247452..421d7fc6 100644 --- a/core/portmanager.lua +++ b/core/portmanager.lua @@ -29,6 +29,8 @@ 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; + --- Private state -- service_name -> { service_info, ... } @@ -111,7 +113,7 @@ function activate(service_name) } bind_ports = set.new(type(bind_ports) ~= "table" and { bind_ports } or bind_ports ); - local mode, ssl = listener.default_mode or "*a"; + local mode, ssl = listener.default_mode or default_mode; local hooked_ports = {}; for interface in bind_interfaces do |