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:
Kim Alvefur 2021-07-13 14:20:26 +02:00
parent 9615fcca97
commit 72fae8bef7

View file

@ -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);