# HG changeset patch # User Kim Alvefur # Date 1335659040 -7200 # Node ID e8bd0a6f45e2788aaf8fdb73ee4c3470cf3499db # Parent bf107d9d496204f24d8af74ca887fa94a872a077 mod_s2s: Don't try to continue attempting to connect when an s2sin is closed diff -r bf107d9d4962 -r e8bd0a6f45e2 plugins/s2s/mod_s2s.lua --- a/plugins/s2s/mod_s2s.lua Sat Apr 28 23:13:49 2012 +0100 +++ b/plugins/s2s/mod_s2s.lua Sun Apr 29 02:24:00 2012 +0200 @@ -280,7 +280,7 @@ end function stream_callbacks.streamdisconnected(session, err) - if err and err ~= "closed" then + if err and err ~= "closed" and session.direction == "outgoing" then (session.log or log)("debug", "s2s connection attempt failed: %s", err); if s2sout.attempt_connection(session, err) then (session.log or log)("debug", "...so we're going to try another target");