]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/treeserver.h
m_spanningtree Introduce new function to send channel messages
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / treeserver.h
index 24f9c0499131e873d3e1dd5f1bcdf8d2c3389b77..f5d81bc735946d9268ac6b4eaea0c71fd687a445 100644 (file)
@@ -1,18 +1,27 @@
-/*       +------------------------------------+
- *       | Inspire Internet Relay Chat Daemon |
- *       +------------------------------------+
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://wiki.inspircd.org/Credits
+ *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
  *
- * This program is free but copyrighted software; see
- *            the file COPYING for details.
+ * This file is part of InspIRCd.  InspIRCd is free software: you can
+ * redistribute it and/or modify it under the terms of the GNU General Public
+ * License as published by the Free Software Foundation, version 2.
  *
- * ---------------------------------------------------
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef __TREESERVER_H__
-#define __TREESERVER_H__
+
+#pragma once
+
+#include "treesocket.h"
 
 /** Each server in the tree is represented by one class of
  * type TreeServer. A locally connected TreeServer can
@@ -51,6 +60,7 @@ class TreeServer : public classbase
        void SetID(const std::string &id);
 
  public:
+       FakeUser* const ServerUser;             /* User representing this server */
        time_t age;
 
        bool Warned;                            /* True if we've warned opers about high latency on this server */
@@ -94,11 +104,11 @@ class TreeServer : public classbase
 
        /** Get server description (GECOS)
         */
-       std::string GetDesc();
+       const std::string& GetDesc();
 
        /** Get server version string
         */
-       std::string GetVersion();
+       const std::string& GetVersion();
 
        /** Set time we are next due to ping this server
         */
@@ -108,7 +118,7 @@ class TreeServer : public classbase
         */
        time_t NextPingTime();
 
-       /** Last ping time in microseconds, used to calculate round trip time
+       /** Last ping time in milliseconds, used to calculate round trip time
         */
        unsigned long LastPingMsec;
 
@@ -186,7 +196,7 @@ class TreeServer : public classbase
 
        /** Get server ID
         */
-       std::string& GetID();
+       const std::string& GetID();
 
        /** Marks a server as having finished bursting and performs appropriate actions.
         */
@@ -194,10 +204,8 @@ class TreeServer : public classbase
        /** Recursive call for child servers */
        void FinishBurstInternal();
 
+       CullResult cull();
        /** Destructor
         */
        ~TreeServer();
-
 };
-
-#endif