net.server_epoll: Ensure timeout after closing

This should make sure that if there's data left to be written when
closing a connection, there's also a timeout so that it doesn't wait
forever.
This commit is contained in:
Kim Alvefur 2020-10-31 00:33:29 +01:00
parent 31eb61f22a
commit 532fbe0687

View file

@ -514,6 +514,7 @@ interface.send = interface.write;
function interface:close()
if self.writebuffer and self.writebuffer[1] then
self:set(false, true); -- Flush final buffer contents
self:setwritetimeout();
self.write, self.send = noop, noop; -- No more writing
self:debug("Close after writing remaining buffered data");
self.ondrain = interface.close;