]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/link.h
Merge remote/local MODULES output
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / link.h
index 4c2117b72bdedfffe50e5a1e7986cab6530bc37a..ae7655ebbb84d0e4c90b08b92ae80b45bcd70989 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.
 #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;
@@ -28,15 +22,24 @@ class Link : public classbase
        int Port;
        std::string SendPass;
        std::string RecvPass;
+       std::string Fingerprint;
        std::string AllowMask;
-       unsigned long AutoConnect;
-       time_t NextConnectTime;
        bool HiddenFromStats;
-       std::string FailOver;
        std::string Hook;
        int Timeout;
        std::string Bind;
        bool Hidden;
 };
 
+class Autoconnect : public refcountbase
+{
+ public:
+       std::vector<std::string> servers;
+       unsigned long Period;
+       time_t NextConnectTime;
+       /** Negative == inactive */
+       int position;
+};
+
+
 #endif