mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
s2smanager: retire_session(): Add a 'reason' parameter
This commit is contained in:
parent
3fa84baafc
commit
d01658b1af
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue