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:
Kim Alvefur 2021-07-14 22:09:39 +02:00
parent 9b58be76c4
commit f11bc3c99c

View file

@ -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()