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
commit36c85822d16ac767abb7874f245f93718b0e50aa (patch)
tree7fbea9484e81ce6d648fbf09b95e3f6da3d8c7bd /plugins
parentb6a636cff20265e9b74f3a7a74e639b247c0b3f7 (diff)
downloadprosody-36c85822d16ac767abb7874f245f93718b0e50aa.tar.gz
prosody-36c85822d16ac767abb7874f245f93718b0e50aa.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;