mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
8fe336b4a1
commit
6d5ff6d2be
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue