]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/link.h
Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicate local...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / link.h
index ae7655ebbb84d0e4c90b08b92ae80b45bcd70989..b318c9bf2d65b2ab3ad564db5bdb00cfa45eb316 100644 (file)
@@ -1,22 +1,29 @@
-/*       +------------------------------------+
- *       | 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) 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 __LINK_H__
-#define __LINK_H__
+
+#pragma once
 
 class Link : public refcountbase
 {
  public:
+       reference<ConfigTag> tag;
        irc::string Name;
        std::string IPAddr;
        int Port;
@@ -29,17 +36,17 @@ class Link : public refcountbase
        int Timeout;
        std::string Bind;
        bool Hidden;
+       Link(ConfigTag* Tag) : tag(Tag) {}
 };
 
 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) {}
 };
-
-
-#endif