mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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
|
end
|
||||||
|
|
||||||
function interface:tlshandshake()
|
function interface:tlshandshake()
|
||||||
self:setwritetimeout(false);
|
|
||||||
self:setreadtimeout(false);
|
self:setreadtimeout(false);
|
||||||
self:noise("Continuing TLS handshake");
|
self:noise("Continuing TLS handshake");
|
||||||
local ok, err = self.conn:dohandshake();
|
local ok, err = self.conn:dohandshake();
|
||||||
|
@ -668,6 +667,7 @@ function interface:tlshandshake()
|
||||||
else
|
else
|
||||||
self:debug("TLS handshake complete");
|
self:debug("TLS handshake complete");
|
||||||
end
|
end
|
||||||
|
self:setwritetimeout(false);
|
||||||
self.onwritable = nil;
|
self.onwritable = nil;
|
||||||
self.onreadable = nil;
|
self.onreadable = nil;
|
||||||
self:on("status", "ssl-handshake-complete");
|
self:on("status", "ssl-handshake-complete");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue