From fce0b37ce605e7cf4c4f69fb93483f722f7ccb21 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 4 Dec 2005 18:31:50 +0000 Subject: [PATCH] Debug junk git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2159 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 237cf14dd..7bcee9bf6 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1613,19 +1613,19 @@ class ModuleSpanningTree : public Module { for (std::vector::iterator x = LinkBlocks.begin(); x < LinkBlocks.end(); x++) { - if (x->AutoConnect) + log(DEBUG,"TICK! Autoconnect=%lu, curtime=%lu, NextConnectTime=%lu",x->AutoConnect,(unsigned long)curtime,(unsigned long)x->NextConnectTime); + if ((x->AutoConnect) && (curtime >= x->NextConnectTime)) { + log(DEBUG,"TICK! AUTOCONNECTING %s",x->Name.c_str()); TreeServer* CheckDupe = FindServer(x->Name); if (!CheckDupe) { + log(DEBUG,"TICK! Not a dupe!"); // an autoconnected server is not connected. Check if its time to connect it - if (curtime >= x->NextConnectTime) - { - x->NextConnectTime = curtime + x->AutoConnect; - WriteOpers("*** AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect); - TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name); - Srv->AddSocket(newsocket); - } + x->NextConnectTime = curtime + x->AutoConnect; + WriteOpers("*** AUTOCONNECT: Auto-connecting server \002%s\002 (%lu seconds until next attempt)",x->Name.c_str(),x->AutoConnect); + TreeSocket* newsocket = new TreeSocket(x->IPAddr,x->Port,false,10,x->Name); + Srv->AddSocket(newsocket); } } } -- 2.39.5