From 329b5943384647e413e68fc020cad19783c6f591 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 29 Apr 2012 02:24:00 +0200 Subject: mod_s2s: Don't try to continue attempting to connect when an s2sin is closed --- plugins/s2s/mod_s2s.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/s2s/mod_s2s.lua b/plugins/s2s/mod_s2s.lua index cee7d6f6..649cd595 100644 --- a/plugins/s2s/mod_s2s.lua +++ b/plugins/s2s/mod_s2s.lua @@ -280,7 +280,7 @@ function stream_callbacks.streamclosed(session) 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"); -- cgit v1.2.3