net.server_epoll: Skip attempt to flush write buffer when not connected

Before 22825cb5dcd8 connection attempts that failed (e.g. connection
refused) would be immediately destroyed.  After, it would schedule
another write cycle and then report 'ondisconnect' again when failing.

Thanks Martin for reporting
This commit is contained in:
Kim Alvefur 2021-09-22 11:27:55 +02:00
parent da8329037d
commit 7e8a3af45f

View file

@ -573,7 +573,7 @@ interface.send = interface.write;
-- Close, possibly after writing is done
function interface:close()
if self.writebuffer and (self.writebuffer[1] or type(self.writebuffer) == "string") then
if self._connected and self.writebuffer and (self.writebuffer[1] or type(self.writebuffer) == "string") then
self:set(false, true); -- Flush final buffer contents
self:setreadtimeout(false);
self:setwritetimeout();