diff options
-rw-r--r-- | core/hostmanager.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index 643724c2..106a8ef2 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -92,6 +92,9 @@ function activate(host, host_config) send = host_send; modules = {}; }; + function host_session:close(reason) + log("debug", "Attempt to close host session %s with reason: %s", self.host, reason); + end setmetatable(host_session, host_mt); if not host_config.component_module then -- host host_session.type = "local"; |