diff options
author | Kim Alvefur <zash@zash.se> | 2013-07-24 15:28:36 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-07-24 15:28:36 +0200 |
commit | ab4a6f5d48ac0367a3fdd878d481a1ae28a7eaa0 (patch) | |
tree | 7fbea9484e81ce6d648fbf09b95e3f6da3d8c7bd /plugins | |
parent | de6a3940e70743f6af12aee316871084b084fd49 (diff) | |
download | prosody-ab4a6f5d48ac0367a3fdd878d481a1ae28a7eaa0.tar.gz prosody-ab4a6f5d48ac0367a3fdd878d481a1ae28a7eaa0.zip |
mod_c2s: Change default of tcp_keepalives to true, and make it individually configurable through c2s_tcp_keepalives
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_c2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index 1d2dd6dd..b2a81592 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -25,7 +25,7 @@ local log = module._log; local c2s_timeout = module:get_option_number("c2s_timeout"); local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5); -local opt_keepalives = module:get_option_boolean("tcp_keepalives", false); +local opt_keepalives = module:get_option_boolean("c2s_tcp_keepalives", module:get_option_boolean("tcp_keepalives", true)); local sessions = module:shared("sessions"); local core_process_stanza = prosody.core_process_stanza; |