net.server_epoll: Close sockets added after shutdown signal (fixes #1670)

This should ensure that sockets get closed even if they are added after
the quit signal. Otherwise they may keep the server alive.
This commit is contained in:
Kim Alvefur 2021-09-20 14:42:18 +02:00
parent 8fe336b4a1
commit 6d5ff6d2be

View file

@ -743,6 +743,12 @@ local function setquitting(quit)
if quit then
quitting = "quitting";
closeall();
addtimer(1, function ()
if quitting then
closeall();
return 1;
end
end);
else
quitting = nil;
end