]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/link.h
Change to Duration for second param
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / link.h
index f44953ab7961f92d0d56583d72b6c6b337181136..ae7655ebbb84d0e4c90b08b92ae80b45bcd70989 100644 (file)
@@ -1,26 +1,45 @@
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
 #ifndef __LINK_H__
 #define __LINK_H__
 
-/** The Link class might as well be a struct,
- * but this is C++ and we don't believe in structs (!).
- * It holds the entire information of one <link>
- * tag from the main config file. We maintain a list
- * of them, and populate the list on rehash/load.
- */
-class Link : public classbase
+class Link : public refcountbase
+{
+ public:
+       irc::string Name;
+       std::string IPAddr;
+       int Port;
+       std::string SendPass;
+       std::string RecvPass;
+       std::string Fingerprint;
+       std::string AllowMask;
+       bool HiddenFromStats;
+       std::string Hook;
+       int Timeout;
+       std::string Bind;
+       bool Hidden;
+};
+
+class Autoconnect : public refcountbase
 {
  public:
-        irc::string Name;
-        std::string IPAddr;
-        int Port;
-        std::string SendPass;
-        std::string RecvPass;
-        unsigned long AutoConnect;
-        time_t NextConnectTime;
-        bool HiddenFromStats;
-        std::string FailOver;
-        std::string Hook;
-        int Timeout;
+       std::vector<std::string> servers;
+       unsigned long Period;
+       time_t NextConnectTime;
+       /** Negative == inactive */
+       int position;
 };
 
+
 #endif