net.server_epoll: Separate handling of "closed" from other errors

The intent is to ensure 'ondisconnect' only gets called once, while
giving buffered outgoing data a last chance to be delivered via the
:close() path in case the connection was only shutdown in one direction.
This commit is contained in:
Kim Alvefur 2021-09-22 13:29:47 +02:00
parent 7e8a3af45f
commit d22a31530a

View file

@ -456,14 +456,14 @@ function interface:onreadable()
self:onconnect();
self:onincoming(partial, err);
end
if err ~= "timeout" then
if err == "closed" then
self:debug("Connection closed by remote");
else
self:debug("Read error, closing (%s)", err);
end
if err == "closed" and self._connected then
self:debug("Connection closed by remote");
self:close(err);
return;
elseif err ~= "timeout" then
self:debug("Read error, closing (%s)", err);
self:on("disconnect", err);
self:close();
self:destroy();
return;
end
end