diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/s2smanager.lua | 1 | ||||
-rw-r--r-- | core/sessionmanager.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index f0b802d8..bc336372 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -506,6 +506,7 @@ end local resting_session = { -- Resting, not dead destroyed = true; + type = "s2s_destroyed"; open_stream = function (session) session.log("debug", "Attempt to open stream on resting session"); end; diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index 5fa757d6..9fe012b1 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -68,6 +68,7 @@ end local resting_session = { -- Resting, not dead destroyed = true; + type = "c2s_destroyed"; close = function (session) session.log("debug", "Attempt to close already-closed session"); end; |