diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree.cpp | 16 |
1 files 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<Link>::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); } } } |