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