mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
other half of previous commit
This commit is contained in:
parent
c91a86c73a
commit
e5e0811552
1 changed files with 14 additions and 0 deletions
|
@ -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;
|
Loading…
Add table
Add a link
Reference in a new issue