]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/link.h
Remove trailing whitespace from various source files.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / link.h
index 4cc7b9b80443709f0df63421eb24e7f72cc2a287..5b9361fcdaad98922069e45bfcfc845ddb864792 100644 (file)
@@ -1,29 +1,52 @@
-#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.
+/*
+ * InspIRCd -- Internet Relay Chat Daemon
+ *
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
+ *
+ * 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/>.
  */
-class Link : public classbase
+
+
+#pragma once
+
+class Link : public refcountbase
 {
  public:
-       irc::string Name;
+       reference<ConfigTag> tag;
+       std::string Name;
        std::string IPAddr;
-       int Port;
+       unsigned int Port;
        std::string SendPass;
        std::string RecvPass;
-       std::string AllowMask;
-       unsigned long AutoConnect;
-       time_t NextConnectTime;
+       std::string Fingerprint;
+       std::vector<std::string> AllowMasks;
        bool HiddenFromStats;
-       std::string FailOver;
        std::string Hook;
-       int Timeout;
+       unsigned int Timeout;
        std::string Bind;
        bool Hidden;
+       Link(ConfigTag* Tag) : tag(Tag) {}
 };
 
-#endif
+class Autoconnect : public refcountbase
+{
+ public:
+       reference<ConfigTag> tag;
+       std::vector<std::string> servers;
+       unsigned long Period;
+       time_t NextConnectTime;
+       /** Negative == inactive */
+       int position;
+       Autoconnect(ConfigTag* Tag) : tag(Tag) {}
+};