mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Add support for TCP Fast Open
Requires a patch to LuaSocket adding this socket option, https://github.com/lunarmodules/luasocket/pull/378 sysctl tweaks net.ipv4.tcp_fastopen=3 net.ipv4.tcp_fastopen_blackhole_timeout_sec = 0 net.ipv4.tcp_fastopen_key=$(</proc/sys/kernel/random/uuid) Disabled by default since it an advanced performance tweak unlikely to be needed by most servers.
This commit is contained in:
parent
11017d1130
commit
575b997d1d
2 changed files with 10 additions and 0 deletions
1
CHANGES
1
CHANGES
|
@ -11,6 +11,7 @@ TRUNK
|
|||
|
||||
- Honour 'weight' parameter during SRV record selection
|
||||
- Support for RFC 8305 "Happy Eyeballs" to improve IPv4/IPv6 connectivity
|
||||
- Support for TCP Fast Open in server_epoll (pending LuaSocket support)
|
||||
|
||||
0.12.0
|
||||
======
|
||||
|
|
|
@ -92,6 +92,9 @@ local default_config = { __index = {
|
|||
|
||||
--- How long to wait after getting the shutdown signal before forcefully tearing down every socket
|
||||
shutdown_deadline = 5;
|
||||
|
||||
-- TCP Fast Open
|
||||
tcp_fastopen = false;
|
||||
}};
|
||||
local cfg = default_config.__index;
|
||||
|
||||
|
@ -906,6 +909,9 @@ local function wrapserver(conn, addr, port, listeners, config)
|
|||
log = logger.init(("serv%s"):format(new_id()));
|
||||
}, interface_mt);
|
||||
server:debug("Server %s created", server);
|
||||
if cfg.tcp_fastopen then
|
||||
server:setoption("tcp-fastopen", cfg.tcp_fastopen);
|
||||
end
|
||||
server:add(true, false);
|
||||
return server;
|
||||
end
|
||||
|
@ -962,6 +968,9 @@ local function addclient(addr, port, listeners, read_size, tls_ctx, typ, extra)
|
|||
if not conn then return conn, err; end
|
||||
local ok, err = conn:settimeout(0);
|
||||
if not ok then return ok, err; end
|
||||
if cfg.tcp_fastopen then
|
||||
pcall(conn.setoption, conn, "tcp-fastopen-connect", 1);
|
||||
end
|
||||
local ok, err = conn:setpeername(addr, port);
|
||||
if not ok and err ~= "timeout" then return ok, err; end
|
||||
local client = wrapsocket(conn, nil, read_size, listeners, tls_ctx, extra)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue