net.server_epoll: Handle LuaSec wantread/wantwrite conditions before callbacks (fixes #1333)

This prevents the :set(true) call from resuming a connection that was
paused in the onincoming callback.
This commit is contained in:
Kim Alvefur 2019-03-28 12:31:14 +01:00
parent b6cff0ba5e
commit e34e8e845d

View file

@ -355,15 +355,18 @@ function interface:onreadable()
self:onconnect();
self:on("incoming", data);
else
if err == "wantread" then
self:set(true, nil);
err = "timeout";
elseif err == "wantwrite" then
self:set(nil, true);
err = "timeout";
end
if partial and partial ~= "" then
self:onconnect();
self:on("incoming", partial, err);
end
if err == "wantread" then
self:set(true, nil);
elseif err == "wantwrite" then
self:set(nil, true);
elseif err ~= "timeout" then
if err ~= "timeout" then
self:on("disconnect", err);
self:destroy()
return;