|
|||
|
|||
|
00001 /* +------------------------------------+ 00002 * | Inspire Internet Relay Chat Daemon | 00003 * +------------------------------------+ 00004 * 00005 * InspIRCd: (C) 2002-2008 InspIRCd Development Team 00006 * See: http://www.inspircd.org/wiki/index.php/Credits 00007 * 00008 * This program is free but copyrighted software; see 00009 * the file COPYING for details. 00010 * 00011 * --------------------------------------------------- 00012 */ 00013 00014 #ifndef __LINK_H__ 00015 #define __LINK_H__ 00016 00023 class Link : public classbase 00024 { 00025 public: 00026 irc::string Name; 00027 std::string IPAddr; 00028 int Port; 00029 std::string SendPass; 00030 std::string RecvPass; 00031 std::string AllowMask; 00032 unsigned long AutoConnect; 00033 time_t NextConnectTime; 00034 bool HiddenFromStats; 00035 std::string FailOver; 00036 std::string Hook; 00037 int Timeout; 00038 std::string Bind; 00039 bool Hidden; 00040 }; 00041 00042 #endif