net.server_epoll: Reduce timer churn during TLS handshake

Instead of removing and readding the timer, keep it and adjust it
instead. Should reduce garbage production a bit.
This commit is contained in:
Kim Alvefur 2021-07-17 14:06:57 +02:00
parent d2678dfdee
commit decfa3a59d

View file

@ -657,7 +657,6 @@ function interface:inittls(tls_ctx, now)
end
function interface:tlshandshake()
self:setwritetimeout(false);
self:setreadtimeout(false);
self:noise("Continuing TLS handshake");
local ok, err = self.conn:dohandshake();
@ -668,6 +667,7 @@ function interface:tlshandshake()
else
self:debug("TLS handshake complete");
end
self:setwritetimeout(false);
self.onwritable = nil;
self.onreadable = nil;
self:on("status", "ssl-handshake-complete");