]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/link.h
'svn propset -R svn:eol-style CR *' Set to UNIX-style always. Binaries are auto skipp...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / link.h
1 /*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#ifndef __LINK_H__\r#define __LINK_H__\r\r/** The Link class might as well be a struct,\r * but this is C++ and we don't believe in structs (!).\r * It holds the entire information of one <link>\r * tag from the main config file. We maintain a list\r * of them, and populate the list on rehash/load.\r */\rclass Link : public classbase\r{\r public:\r  irc::string Name;\r      std::string IPAddr;\r    int Port;\r      std::string SendPass;\r  std::string RecvPass;\r  std::string AllowMask;\r unsigned long AutoConnect;\r     time_t NextConnectTime;\r        bool HiddenFromStats;\r  std::string FailOver;\r  std::string Hook;\r      int Timeout;\r   std::string Bind;\r      bool Hidden;\r};\r\r#endif\r