mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Start TLS handshake immediately on newly accepted connections
Since TLS is a client-first protocol there is a chance that the ClientHello message is available already. TLS Fast Open and/or the TCP_DEFER_ACCEPT socket option would increase that chance.
This commit is contained in:
parent
9615fcca97
commit
72fae8bef7
1 changed files with 1 additions and 0 deletions
|
@ -703,6 +703,7 @@ function interface:onacceptable()
|
|||
if client:inittls(self.tls_ctx) then
|
||||
client:setreadtimeout(cfg.ssl_handshake_timeout);
|
||||
client:setwritetimeout(cfg.ssl_handshake_timeout);
|
||||
client:tlshandshake();
|
||||
end
|
||||
else
|
||||
client:add(true, false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue