aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
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
commitaa15ed7020f549613e41d5efd133a21373fa406f (patch)
tree7fbea9484e81ce6d648fbf09b95e3f6da3d8c7bd /plugins
parent4b01c2691b2d731c7cf9a60d063010515ad731de (diff)
downloadprosody-aa15ed7020f549613e41d5efd133a21373fa406f.tar.gz
prosody-aa15ed7020f549613e41d5efd133a21373fa406f.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.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;