]> jfr.im git - irc/rqf/shadowircd.git/blame - include/m_info.h
[svn] - remove ALL braindead 2.8 I/O artifacts: MASTER_MAX, HARD_FDLIMIT, HARD_FDLIMI...
[irc/rqf/shadowircd.git] / include / m_info.h
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_info.h: A header for the information sent by /info
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
6fcb8629 24 * $Id: m_info.h 3354 2007-04-03 09:21:31Z nenolod $
212380e3 25 */
26
27#ifndef INCLUDED_m_info_h
28#define INCLUDED_m_info_h
29
30#include "config.h"
31
32typedef struct Information
33{
34 const char *name; /* name of item */
35 const char *strvalue; /* value of item if it's a boolean */
36 int intvalue; /* value of item if it's an integer */
37 const char *desc; /* short description of item */
38}
39Info;
40
41Info MyInformation[] = {
42
43#ifdef CPATH
44 {"CPATH", CPATH, 0, "Path to Main Configuration File"},
45#else
46 {"CPATH", "NONE", 0, "Path to Main Configuration File"},
47#endif /* CPATH */
48
49#ifdef DPATH
50 {"DPATH", DPATH, 0, "Directory Containing Configuration Files"},
51#else
52 {"DPATH", "NONE", 0, "Directory Containing Configuration Files"},
53#endif /* DPATH */
54
55#ifdef DLPATH
56 {"DLPATH", DLPATH, 0, "Path to D-line File"},
57#else
58 {"DLPATH", "NONE", 0, "Path to D-line File"},
59#endif /* DLPATH */
60
61#ifdef RESVPATH
62 {"RESVPATH", RESVPATH, 0, "Path to resv file"},
63#else
64 {"RESVPATH", "NONE", 0, "Path to resv file"},
65#endif
66
212380e3 67#ifdef HPATH
68 {"HPATH", HPATH, 0, "Path to Operator Help Files"},
69#else
70 {"HPATH", "NONE", 0, "Path to Operator Help Files"},
71#endif /* HPATH */
72
73#ifdef UHPATH
74 {"UHPATH", UHPATH, 0, "Path to User Help Files"},
75#else
76 {"UHPATH", "NONE", 0, "Path to User Help Files"},
77#endif /* UH PATH */
78
79#ifdef SOMAXCONN
80 {"RATBOX_SOMAXCONN", "", SOMAXCONN,
81 "Maximum Queue Length of Pending Connections"},
82#else
83 {"RATBOX_SOMAXCONN", "", RATBOX_SOMAXCONN,
84 "Maximum Queue Length of Pending Connections"},
85#endif /* SOMAXCONN */
86
87#ifdef IPV6
88 {"IPV6", "ON", 0, "IPv6 Support"},
89#else
90 {"IPV6", "OFF", 0, "IPv6 Support"},
91#endif
92
93 {"MAX_CLIENTS", "", MAX_CLIENTS, "Default maximum Clients"},
94
95 {"JOIN_LEAVE_COUNT_EXPIRE_TIME", "", JOIN_LEAVE_COUNT_EXPIRE_TIME,
96 "Anti SpamBot Parameter"},
97
98 {"KILLCHASETIMELIMIT", "", KILLCHASETIMELIMIT,
99 "Nick Change Tracker for KILL"},
100
101#ifdef KPATH
102 {"KPATH", KPATH, 0, "Path to K-line File"},
103#else
104 {"KPATH", "NONE", 0, "Path to K-line File"},
105#endif /* KPATH */
106
107#ifdef LPATH
108 {"LPATH", LPATH, 0, "Path to Log File"},
109#else
110 {"LPATH", "NONE", 0, "Path to Log File"},
111#endif /* LPATH */
112
113 {"MAX_BUFFER", "", MAX_BUFFER, "Maximum Buffer Connections Allowed"},
114
115 {"MAX_JOIN_LEAVE_COUNT", "", MAX_JOIN_LEAVE_COUNT,
116 "Anti SpamBot Parameter"},
117
118 {"MIN_JOIN_LEAVE_TIME", "", MIN_JOIN_LEAVE_TIME,
119 "Anti SpamBot Parameter"},
120
121#ifdef MPATH
122 {"MPATH", MPATH, 0, "Path to MOTD File"},
123#else
124 {"MPATH", "NONE", 0, "Path to MOTD File"},
125#endif /* MPATH */
126
127 {"NICKNAMEHISTORYLENGTH", "", NICKNAMEHISTORYLENGTH,
128 "Size of WHOWAS Array"},
129
130#ifdef OPATH
131 {"OPATH", OPATH, 0, "Path to Operator MOTD File"},
132#else
133 {"OPATH", "NONE", 0, "Path to Operator MOTD File"},
134#endif /* OPATH */
135
136 {"OPER_SPAM_COUNTDOWN", "", OPER_SPAM_COUNTDOWN,
137 "Anti SpamBot Parameter"},
138
139#ifdef HAVE_LIBCRYPTO
140 {"HAVE_LIBCRYPTO", "ON", 0, "Enable OpenSSL CHALLENGE Support"},
141#else
142 {"HAVE_LIBCRYPTO", "OFF", 0, "Enable OpenSSL CHALLENGE Support"},
143#endif /* HAVE_LIBCRYPTO */
144
145#ifdef HAVE_LIBZ
146 {"HAVE_LIBZ", "YES", 0, "zlib (ziplinks) support"},
147#else
148 {"HAVE_LIBZ", "NO", 0, "zlib (ziplinks) support"},
149#endif /* HAVE_LIBZ */
150
151#ifdef PPATH
152 {"PPATH", PPATH, 0, "Path to Pid File"},
153#else
154 {"PPATH", "NONE", 0, "Path to Pid File"},
155#endif /* PPATH */
156
157 {"SELECT_TYPE", SELECT_TYPE, 0, "Method of Multiplexed I/O"},
158
159#ifdef SPATH
160 {"SPATH", SPATH, 0, "Path to Server Executable"},
161#else
162 {"SPATH", "NONE", 0, "Path to Server Executable"},
163#endif /* SPATH */
164
165 {"TS_MAX_DELTA_DEFAULT", "", TS_MAX_DELTA_DEFAULT,
166 "Maximum Allowed TS Delta from another Server"},
167 {"TS_WARN_DELTA_DEFAULT", "", TS_WARN_DELTA_DEFAULT,
168 "Maximum TS Delta before Sending Warning"},
169#ifdef USE_IODEBUG_HOOKS
170 {"USE_IODEBUG_HOOKS", "YES", 0, "IO Debugging support"},
171#else
172 {"USE_IODEBUG_HOOKS", "NO", 0, "IO Debugging support"},
173#endif
174
175 /*
176 * since we don't want to include the world here, NULL probably
177 * isn't defined by the time we read this, just use plain 0 instead
178 * 0 is guaranteed by the language to be assignable to ALL built
179 * in types with the correct results.
180 */
181 {0, 0, 0, 0}
182};
183
184
185#endif /* INCLUDED_m_info_h */