]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/link.h
Include explicit routing information in Command, will replace CMD_LOCALONLY return...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / link.h
index f44953ab7961f92d0d56583d72b6c6b337181136..4805f978ca01c3da25f9e80584a84c71292276f8 100644 (file)
@@ -1,3 +1,16 @@
+/*       +------------------------------------+
+ *       | 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__
 
 class Link : public classbase
 {
  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;
+       irc::string Name;
+       std::string IPAddr;
+       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;
 };
 
 #endif