diff options
author | Kim Alvefur <zash@zash.se> | 2013-12-18 18:36:54 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-12-18 18:36:54 +0100 |
commit | 7ca6c7391e4429585879f5c9a8d434e9c23b5f5f (patch) | |
tree | 88339680df2e8df686a62d99a6c5bd28d1643de2 /plugins | |
parent | bcc1c1a7d3db5accfe856b511ef946446b929312 (diff) | |
parent | b64813dcf21724b787bb2583eacb4516fabf3990 (diff) | |
download | prosody-7ca6c7391e4429585879f5c9a8d434e9c23b5f5f.tar.gz prosody-7ca6c7391e4429585879f5c9a8d434e9c23b5f5f.zip |
Merge 0.9->0.10
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_component.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/mod_component.lua b/plugins/mod_component.lua index 3eaacb8e..1497b12f 100644 --- a/plugins/mod_component.lua +++ b/plugins/mod_component.lua @@ -25,6 +25,8 @@ local hosts = prosody.hosts; local log = module._log; +local opt_keepalives = module:get_option_boolean("component_tcp_keepalives", module:get_option_boolean("tcp_keepalives", true)); + local sessions = module:shared("sessions"); function module.add_host(module) @@ -86,7 +88,7 @@ function module.add_host(module) return true; end - module:hook("stanza/jabber:component:accept:handshake", handle_component_auth); + module:hook("stanza/jabber:component:accept:handshake", handle_component_auth, -1); -- Handle stanzas addressed to this component local function handle_stanza(event) @@ -270,6 +272,10 @@ function listener.onconnect(conn) session.log = logger.init(conn_name); session.close = session_close; + if opt_keepalives then + conn:setoption("keepalive", opt_keepalives); + end + session.log("info", "Incoming Jabber component connection"); local stream = new_xmpp_stream(session, stream_callbacks); |