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:
Kim Alvefur 2021-07-13 14:58:50 +02:00
parent 1877068b3d
commit 357cf7647a

View file

@ -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);