s2smanager: retire_session(): Add a 'reason' parameter

This commit is contained in:
Matthew Wild 2010-12-24 04:47:18 +00:00
parent 3fa84baafc
commit d01658b1af

View file

@ -592,7 +592,7 @@ local resting_session = { -- Resting, not dead
filter = function (type, data) return data; end;
}; resting_session.__index = resting_session;
function retire_session(session)
function retire_session(session, reason)
local log = session.log or log;
for k in pairs(session) do
if k ~= "trace" and k ~= "log" and k ~= "id" then
@ -600,6 +600,8 @@ function retire_session(session)
end
end
session.destruction_reason = reason;
function session.send(data) log("debug", "Discarding data sent to resting session: %s", tostring(data)); end
function session.data(data) log("debug", "Discarding data received from resting session: %s", tostring(data)); end
return setmetatable(session, resting_session);