mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Wrap LuaSocket object earlier to reuse option setting method
Since it provides some protection and error handling in the form of logging.
This commit is contained in:
parent
269acd6847
commit
3b6565c77b
1 changed files with 2 additions and 2 deletions
|
@ -969,12 +969,12 @@ 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
|
||||
local client = wrapsocket(conn, nil, read_size, listeners, tls_ctx, extra)
|
||||
if cfg.tcp_fastopen then
|
||||
pcall(conn.setoption, conn, "tcp-fastopen-connect", 1);
|
||||
client:setoption("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)
|
||||
client:updatenames();
|
||||
local ok, err = client:init();
|
||||
if not client.peername then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue