net.server_epoll: Don't try to flush buffer on closed connections

Attempt to fix a bug where connections are somehow closed twice, leading
to bad things happening elsewhere.

With LuaSec, closed connections are generally already too closed to
write anything to anyway since it does not support unidirectional
shutdown.
This commit is contained in:
Kim Alvefur 2024-11-19 00:41:02 +01:00
parent ff00c6707f
commit 61b0c0cd3a

View file

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