net.server_select: Call ondisconnect handler, even if we closed the socket ourselves (fixes HTTP session hoarding, thanks Maranda)

This commit is contained in:
Matthew Wild 2012-05-23 02:19:11 +01:00
parent c7f054eae6
commit 5d6f4c7124

View file

@ -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( )