Software /
code /
prosody
Diff
core/s2smanager.lua @ 164:8dc1faa5b1df
other half of previous commit
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 24 Oct 2008 18:14:40 +0100 |
parent | 162:b1099bdd2724 |
child | 167:c51246bc679d |
line wrap: on
line diff
--- a/core/s2smanager.lua Fri Oct 24 18:13:54 2008 +0100 +++ b/core/s2smanager.lua Fri Oct 24 18:14:40 2008 +0100 @@ -179,4 +179,18 @@ 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; \ No newline at end of file