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:
Kim Alvefur 2019-01-16 20:01:38 +01:00
parent b2c3b2f740
commit 5268b2c180

View file

@ -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;