net.server_epoll: Support setting keepalive idle time

Activated by setting config.tcp_keepalive to a number, in seconds.
Defaults to 2h.

Depends on LuaSocket support for this option.
This commit is contained in:
Kim Alvefur 2021-07-14 22:13:30 +02:00
parent f11bc3c99c
commit 15dd3e5687

View file

@ -733,6 +733,9 @@ end
function interface:defaultoptions()
if cfg.tcp_keepalive then
self:setoption("keepalive", true);
if type(cfg.tcp_keepalive) == "number" then
self:setoption("tcp-keepidle", cfg.tcp_keepalive);
end
end
end