mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.server_epoll: Call onconnect immediately after TLS handshake completion
Skips a roundtrip through the main loop in case client-first data is available already, if not then :onreadable() will set the appropriate timeout.
This commit is contained in:
parent
1877068b3d
commit
357cf7647a
1 changed files with 2 additions and 1 deletions
|
@ -635,8 +635,9 @@ function interface:tlshandshake()
|
|||
self.onwritable = nil;
|
||||
self.onreadable = nil;
|
||||
self:on("status", "ssl-handshake-complete");
|
||||
self:setwritetimeout();
|
||||
self:set(true, true);
|
||||
self:onconnect();
|
||||
self:onreadable();
|
||||
elseif err == "wantread" then
|
||||
self:noise("TLS handshake to wait until readable");
|
||||
self:set(true, false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue