]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/treeserver.h
Poach feature request: If a server does not respond after x seconds to a PING, send...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / treeserver.h
index 8ce7ae0417dca519ec3c28d689e074540b1efcd0..514d6bc07a04c37fb7a7679f72ac6296926ca682 100644 (file)
@@ -1,3 +1,16 @@
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
 #ifndef __TREESERVER_H__
 #define __TREESERVER_H__
 
@@ -33,6 +46,8 @@ class TreeServer : public classbase
 
  public:
 
+       bool Warned;                            /* True if we've warned opers about high latency on this server */
+
        /** 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.
         */
@@ -48,7 +63,7 @@ class TreeServer : public classbase
         * This constructor initializes the server's Route and Parent, and sets up
         * its ping counters so that it will be pinged one minute from now.
         */
-       TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::string Name, std::string Desc, TreeServer* Above, TreeSocket* Sock);
+       TreeServer(SpanningTreeUtilities* Util, InspIRCd* Instance, std::string Name, std::string Desc, TreeServer* Above, TreeSocket* Sock, bool Hide);
 
        int QuitUsers(const std::string &reason);
 
@@ -90,6 +105,18 @@ class TreeServer : public classbase
         */
        time_t NextPingTime();
 
+       /** Time of last ping used to calculate this->rtt below
+        */
+       time_t LastPing;
+
+       /** Round trip time of last ping
+        */
+       time_t rtt;
+
+       /** True if this server is hidden
+        */
+       bool Hidden;
+
        /** True if the server answered their last ping
         */
        bool AnsweredLastPing();