mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.server_select: Call ondisconnect handler, even if we closed the socket ourselves (fixes HTTP session hoarding, thanks Maranda)
This commit is contained in:
parent
c7f054eae6
commit
5d6f4c7124
1 changed files with 4 additions and 0 deletions
|
@ -350,7 +350,11 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
|
|||
if handler then
|
||||
_writetimes[ handler ] = nil
|
||||
_closelist[ handler ] = nil
|
||||
local _handler = handler;
|
||||
handler = nil
|
||||
if disconnect then
|
||||
disconnect(_handler, "closed");
|
||||
end
|
||||
end
|
||||
if server then
|
||||
server.remove( )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue