]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/treeserver.h
Remove unused I_ProtoSendMetaData, I_ProtoSendMode fields of Implementation
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / treeserver.h
index fea17b7d2e97c6097b246d765359776689f286fd..f39778eb0c6d0cb034f32dd4155e45c8c2392b41 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -44,7 +44,6 @@ class TreeServer : public classbase
        bool LastPingWasGood;                   /* True if the server responded to the last PING with a PONG */
        SpanningTreeUtilities* Utils;           /* Utility class */
        std::string sid;                        /* Server ID */
-       bool DupError;                          /* True if the server ID is duplicated (!) */
 
        /** Set server ID
         * @param id Server ID
@@ -57,11 +56,6 @@ class TreeServer : public classbase
        bool Warned;                            /* True if we've warned opers about high latency on this server */
        bool bursting;                          /* whether or not this server is bursting */
 
-       /** We don't use this constructor. Its a dummy, and won't cause any insertion
-        * of the TreeServer into the hash_map. See below for the two we DO use.
-        */
-       TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, const std::string &id);
-
        /** We use this constructor only to create the 'root' item, Utils->TreeRoot, which
         * represents our own server. Therefore, it has no route, no parent, and
         * no socket associated with it. Its version string is our own local version.
@@ -194,13 +188,11 @@ class TreeServer : public classbase
         */
        std::string& GetID();
 
-       /** True on duplicate server ID (server not usable)
-        */
-       bool DuplicateID();
-
        /** Marks a server as having finished bursting and performs appropriate actions.
         */
        void FinishBurst();
+       /** Recursive call for child servers */
+       void FinishBurstInternal();
 
        /** Destructor
         */