mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Add setting for disabling the Nagle algorithm
Nagle increases latency and is the bane of all networking!
This commit is contained in:
parent
15dd3e5687
commit
005e931005
1 changed files with 6 additions and 0 deletions
|
@ -83,6 +83,9 @@ local default_config = { __index = {
|
|||
|
||||
-- TCP Keepalives
|
||||
tcp_keepalive = false; -- boolean | number
|
||||
|
||||
-- Whether to let the Nagle algorithm stay enabled
|
||||
nagle = true;
|
||||
}};
|
||||
local cfg = default_config.__index;
|
||||
|
||||
|
@ -731,6 +734,9 @@ function interface:init()
|
|||
end
|
||||
|
||||
function interface:defaultoptions()
|
||||
if cfg.nagle == false then
|
||||
self:setoption("tcp-nodelay", true);
|
||||
end
|
||||
if cfg.tcp_keepalive then
|
||||
self:setoption("keepalive", true);
|
||||
if type(cfg.tcp_keepalive) == "number" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue