mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Use TLS handshake timeout after initiating handshake
The :init() method sets a different timeout than the TLS related methods.
This commit is contained in:
parent
72fae8bef7
commit
063a7e45a3
1 changed files with 3 additions and 1 deletions
|
@ -613,7 +613,9 @@ function interface:inittls(tls_ctx)
|
|||
self.ondrain = nil;
|
||||
self.onwritable = interface.tlshandshake;
|
||||
self.onreadable = interface.tlshandshake;
|
||||
return self:init();
|
||||
self:setreadtimeout(cfg.ssl_handshake_timeout);
|
||||
self:setwritetimeout(cfg.ssl_handshake_timeout);
|
||||
self:add(true, true);
|
||||
end
|
||||
|
||||
function interface:tlshandshake()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue