net.server_epoll: Use correct connection timeout when initiating Direct TLS

Otherwise it takes a lot longer to time out Direct TLS connections than
TCP / STARTTLS connections.
This commit is contained in:
Kim Alvefur 2025-04-02 15:54:31 +02:00
parent c384aeca79
commit c701571b95

View file

@ -772,7 +772,7 @@ function interface:starttls(tls_ctx)
self.onreadable = interface.inittls;
self:set(true, true);
self:setreadtimeout(false);
self:setwritetimeout(cfg.ssl_handshake_timeout);
self:setwritetimeout(self._connected and cfg.ssl_handshake_timeout or cfg.connect_timeout);
self:debug("Prepared to start TLS");
end
end