other half of previous commit

This commit is contained in:
Matthew Wild 2008-10-24 18:14:40 +01:00
parent c91a86c73a
commit e5e0811552

View file

@ -179,4 +179,18 @@ function mark_connected(session)
end
end
function destroy_session(session)
(session.log or log)("info", "Destroying session");
if session.direction == "outgoing" then
hosts[session.to_host] = nil;
end
session.conn = nil;
session.disconnect = nil;
for k in pairs(session) do
if k ~= "trace" then
session[k] = nil;
end
end
end
return _M;