mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.s2smanager: Add stub reset_stream method to destroyed sessions
Fixes traceback if connection is closed from the 's2s-authenticated' event
This commit is contained in:
parent
b2c3b2f740
commit
5268b2c180
1 changed files with 3 additions and 0 deletions
|
@ -50,6 +50,9 @@ local resting_session = { -- Resting, not dead
|
|||
close = function (session)
|
||||
session.log("debug", "Attempt to close already-closed session");
|
||||
end;
|
||||
reset_stream = function (session)
|
||||
session.log("debug", "Attempt to reset stream of already-closed session");
|
||||
end;
|
||||
filter = function (type, data) return data; end; --luacheck: ignore 212/type
|
||||
}; resting_session.__index = resting_session;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue