# HG changeset patch # User Matthew Wild # Date 1293166170 0 # Node ID 174edf85a916e8b8ea0d373597d86a71aac1a366 # Parent f5d2400ca127650a711a8f42ff8bf05069bdb3a8 s2smanager: Give all new outgoing s2s sessions a close method by default (destroy_session) diff -r f5d2400ca127 -r 174edf85a916 core/s2smanager.lua --- a/core/s2smanager.lua Fri Dec 24 04:48:38 2010 +0000 +++ b/core/s2smanager.lua Fri Dec 24 04:49:30 2010 +0000 @@ -178,6 +178,8 @@ hosts[from_host].s2sout[to_host] = host_session; + host_session.close = destroy_session; -- This gets replaced by xmppserver_listener later + local log; do local conn_name = "s2sout"..tostring(host_session):match("[a-f0-9]*$");