mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_component: Enable TCP keepalives on component streams
This commit is contained in:
parent
72d7753441
commit
a3dab92bb3
1 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue