mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Immediately attempt to read from newly accepted connections
This may speed up client-first protocols (e.g. XMPP, HTTP and TLS) when the first client data already arrived by the time we accept() it. If LuaSocket supported TCP_DEFER_ACCEPT we could use that to further increase the chance that there's already data to handle. In case no data has arrived, no harm should be done, :onreadable would simply set the read timeout and we'll get back to it once there is something to handle.
This commit is contained in:
parent
852e44959d
commit
b40b79873c
1 changed files with 1 additions and 1 deletions
|
@ -698,8 +698,8 @@ function interface:onacceptable()
|
|||
client:starttls(self.tls_ctx);
|
||||
else
|
||||
client:add(true, false);
|
||||
client:setreadtimeout();
|
||||
client:onconnect();
|
||||
client:onreadable();
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue