From 208c7ca51180cd51fef6b5862bc948c3a656cd30 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Fri, 24 Dec 2010 04:47:18 +0000 Subject: s2smanager: retire_session(): Add a 'reason' parameter --- core/s2smanager.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/s2smanager.lua b/core/s2smanager.lua index b8163efa..212a2fe1 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -555,7 +555,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 @@ -563,6 +563,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); -- cgit v1.2.3