mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.server_event: Do not automatically close clients when closing a server port
This commit is contained in:
parent
f56e371309
commit
824fdebc55
1 changed files with 3 additions and 16 deletions
|
@ -343,24 +343,11 @@ do
|
|||
return nil, "writebuffer not empty, waiting"
|
||||
end
|
||||
else
|
||||
debug( "try to close server with id:", self.id, "args:", now )
|
||||
debug( "try to close server with id:", tostring(self.id), "args:", tostring(now) )
|
||||
self.fatalerror = "server to close"
|
||||
self:_lock( true )
|
||||
local count = 0
|
||||
for _, item in ipairs( interfacelist( ) ) do
|
||||
if ( item.type ~= "server" ) and ( item._server == self ) then -- client/server match
|
||||
if item:close( now ) then -- writebuffer was empty
|
||||
count = count + 1
|
||||
end
|
||||
end
|
||||
end
|
||||
local timeout = 0 -- dont wait for unfinished writebuffers of clients...
|
||||
if not now then
|
||||
timeout = cfg.WRITE_TIMEOUT -- ...or wait for it
|
||||
end
|
||||
self:_close( timeout ) -- add new event to remove the server interface
|
||||
debug( "seconds remained until server is closed:", timeout )
|
||||
return count -- returns finished clients with empty writebuffer
|
||||
self:_close( 0 ) -- add new event to remove the server interface
|
||||
return true
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue