mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.dns: Remove sockets from socketset when closing them, fixes a leak
This commit is contained in:
parent
193278754c
commit
3967579413
1 changed files with 5 additions and 2 deletions
|
@ -558,8 +558,11 @@ function resolver:socket_wrapper_set (func) -- - - - - - - socket_wrapper_set
|
|||
|
||||
|
||||
function resolver:closeall () -- - - - - - - - - - - - - - - - - - closeall
|
||||
for i,sock in ipairs (self.socket) do self.socket[i]:close () end
|
||||
self.socket = {}
|
||||
for i,sock in ipairs (self.socket) do
|
||||
self.socket[i] = nil;
|
||||
self.socketset[sock] = nil;
|
||||
sock:close();
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue