mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Add way to enable TCP keeplives on all connections
In case one wishes to enable this for all connections, not just c2s (not Direct TLS ones, because LuaSec) and s2s. Unclear what use these are, since they kick in after 2 hours of idle time.
This commit is contained in:
parent
9b58be76c4
commit
f11bc3c99c
1 changed files with 6 additions and 1 deletions
|
@ -80,6 +80,9 @@ local default_config = { __index = {
|
|||
|
||||
-- Attempt writes instantly
|
||||
opportunistic_writes = false;
|
||||
|
||||
-- TCP Keepalives
|
||||
tcp_keepalive = false; -- boolean | number
|
||||
}};
|
||||
local cfg = default_config.__index;
|
||||
|
||||
|
@ -727,8 +730,10 @@ function interface:init()
|
|||
return self:add(true, true);
|
||||
end
|
||||
|
||||
-- luacheck: ignore 212/self
|
||||
function interface:defaultoptions()
|
||||
if cfg.tcp_keepalive then
|
||||
self:setoption("keepalive", true);
|
||||
end
|
||||
end
|
||||
|
||||
function interface:pause()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue