aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_c2s.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-07-24 15:28:36 +0200
committerKim Alvefur <zash@zash.se>2013-07-24 15:28:36 +0200
commitda4206e2487426dce5c90537dfdd8800a3aae61a (patch)
tree7fbea9484e81ce6d648fbf09b95e3f6da3d8c7bd /plugins/mod_c2s.lua
parentea624497fb152874e62349ed70afddee6e7fc68f (diff)
downloadprosody-da4206e2487426dce5c90537dfdd8800a3aae61a.tar.gz
prosody-da4206e2487426dce5c90537dfdd8800a3aae61a.zip
mod_c2s: Change default of tcp_keepalives to true, and make it individually configurable through c2s_tcp_keepalives
Diffstat (limited to 'plugins/mod_c2s.lua')
-rw-r--r--plugins/mod_c2s.lua2
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;