mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
d2678dfdee
commit
decfa3a59d
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue