mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
f11bc3c99c
commit
15dd3e5687
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue