mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.11->trunk
This commit is contained in:
commit
da8329037d
2 changed files with 19 additions and 1 deletions
|
@ -89,6 +89,9 @@ local default_config = { __index = {
|
|||
|
||||
-- Reuse write buffer tables
|
||||
keep_buffers = true;
|
||||
|
||||
--- How long to wait after getting the shutdown signal before forcefully tearing down every socket
|
||||
shutdown_deadline = 5;
|
||||
}};
|
||||
local cfg = default_config.__index;
|
||||
|
||||
|
@ -1004,6 +1007,21 @@ local function setquitting(quit)
|
|||
if quit then
|
||||
quitting = "quitting";
|
||||
closeall();
|
||||
addtimer(1, function ()
|
||||
if quitting then
|
||||
closeall();
|
||||
return 1;
|
||||
end
|
||||
end);
|
||||
if cfg.shutdown_deadline then
|
||||
addtimer(cfg.shutdown_deadline, function ()
|
||||
if quitting then
|
||||
for fd, conn in pairs(fds) do -- luacheck: ignore 213/fd
|
||||
conn:destroy();
|
||||
end
|
||||
end
|
||||
end);
|
||||
end
|
||||
else
|
||||
quitting = nil;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue