mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
net.server_epoll: Add option to defer accept() until data available
This is a Linux(?) socket option that delays the accept signal until there is data available to read. E.g. with HTTP this might mean that a whole request can be handled without going back trough another turn of the main loop, and an initial client <stream> can be responded to. This may have effects on latency and resource use, as the server does not need to allocate resources until really needed.
This commit is contained in:
parent
3b6565c77b
commit
d33b858436
2 changed files with 7 additions and 0 deletions
|
@ -95,6 +95,9 @@ local default_config = { __index = {
|
|||
|
||||
-- TCP Fast Open
|
||||
tcp_fastopen = false;
|
||||
|
||||
-- Defer accept until incoming data is available
|
||||
tcp_defer_accept = false;
|
||||
}};
|
||||
local cfg = default_config.__index;
|
||||
|
||||
|
@ -912,6 +915,9 @@ local function wrapserver(conn, addr, port, listeners, config)
|
|||
if cfg.tcp_fastopen then
|
||||
server:setoption("tcp-fastopen", cfg.tcp_fastopen);
|
||||
end
|
||||
if type(cfg.tcp_defer_accept) == "number" then
|
||||
server:setoption("tcp-defer-accept", cfg.tcp_defer_accept);
|
||||
end
|
||||
server:add(true, false);
|
||||
return server;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue