Merge 0.10->trunk

This commit is contained in:
Kim Alvefur 2017-03-06 01:14:32 +01:00
commit ca65f0d2d3
11 changed files with 42 additions and 19 deletions

View file

@ -71,7 +71,9 @@ end
local function destroy_session(session, reason)
if session.destroyed then return; end
(session.log or log)("debug", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host)..(reason and (": "..reason) or ""));
(session.log or log)("debug", "Destroying "..tostring(session.direction)
.." session "..tostring(session.from_host).."->"..tostring(session.to_host)
..(reason and (": "..reason) or ""));
if session.direction == "outgoing" then
hosts[session.from_host].s2sout[session.to_host] = nil;