]> jfr.im git - solanum.git/blame - include/m_info.h
ircd/authproc.c: avoid crash on lack of any configured DNSBLs
[solanum.git] / include / m_info.h
CommitLineData
212380e3
AC
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
212380e3
AC
23 */
24
25#ifndef INCLUDED_m_info_h
26#define INCLUDED_m_info_h
27
9b8e9eb3 28#include "defaults.h"
212380e3
AC
29
30typedef struct Information
31{
32 const char *name; /* name of item */
33 const char *strvalue; /* value of item if it's a boolean */
34 int intvalue; /* value of item if it's an integer */
35 const char *desc; /* short description of item */
36}
37Info;
38
39Info MyInformation[] = {
40
41#ifdef CPATH
42 {"CPATH", CPATH, 0, "Path to Main Configuration File"},
43#else
44 {"CPATH", "NONE", 0, "Path to Main Configuration File"},
45#endif /* CPATH */
46
47#ifdef DPATH
48 {"DPATH", DPATH, 0, "Directory Containing Configuration Files"},
49#else
50 {"DPATH", "NONE", 0, "Directory Containing Configuration Files"},
51#endif /* DPATH */
52
212380e3
AC
53#ifdef HPATH
54 {"HPATH", HPATH, 0, "Path to Operator Help Files"},
55#else
56 {"HPATH", "NONE", 0, "Path to Operator Help Files"},
57#endif /* HPATH */
58
59#ifdef UHPATH
60 {"UHPATH", UHPATH, 0, "Path to User Help Files"},
61#else
62 {"UHPATH", "NONE", 0, "Path to User Help Files"},
63#endif /* UH PATH */
64
65#ifdef SOMAXCONN
a6f63a82 66 {"SOLANUM_SOMAXCONN", "", SOMAXCONN,
212380e3
AC
67 "Maximum Queue Length of Pending Connections"},
68#else
a6f63a82 69 {"SOLANUM_SOMAXCONN", "", SOLANUM_SOMAXCONN,
212380e3
AC
70 "Maximum Queue Length of Pending Connections"},
71#endif /* SOMAXCONN */
72
212380e3 73 {"IPV6", "ON", 0, "IPv6 Support"},
212380e3 74
212380e3
AC
75 {"JOIN_LEAVE_COUNT_EXPIRE_TIME", "", JOIN_LEAVE_COUNT_EXPIRE_TIME,
76 "Anti SpamBot Parameter"},
77
78 {"KILLCHASETIMELIMIT", "", KILLCHASETIMELIMIT,
79 "Nick Change Tracker for KILL"},
80
212380e3
AC
81#ifdef LPATH
82 {"LPATH", LPATH, 0, "Path to Log File"},
83#else
84 {"LPATH", "NONE", 0, "Path to Log File"},
85#endif /* LPATH */
86
87 {"MAX_BUFFER", "", MAX_BUFFER, "Maximum Buffer Connections Allowed"},
88
89 {"MAX_JOIN_LEAVE_COUNT", "", MAX_JOIN_LEAVE_COUNT,
90 "Anti SpamBot Parameter"},
91
92 {"MIN_JOIN_LEAVE_TIME", "", MIN_JOIN_LEAVE_TIME,
93 "Anti SpamBot Parameter"},
94
95#ifdef MPATH
96 {"MPATH", MPATH, 0, "Path to MOTD File"},
97#else
98 {"MPATH", "NONE", 0, "Path to MOTD File"},
99#endif /* MPATH */
100
101 {"NICKNAMEHISTORYLENGTH", "", NICKNAMEHISTORYLENGTH,
102 "Size of WHOWAS Array"},
103
104#ifdef OPATH
105 {"OPATH", OPATH, 0, "Path to Operator MOTD File"},
106#else
107 {"OPATH", "NONE", 0, "Path to Operator MOTD File"},
108#endif /* OPATH */
109
110 {"OPER_SPAM_COUNTDOWN", "", OPER_SPAM_COUNTDOWN,
111 "Anti SpamBot Parameter"},
112
113#ifdef HAVE_LIBCRYPTO
114 {"HAVE_LIBCRYPTO", "ON", 0, "Enable OpenSSL CHALLENGE Support"},
115#else
116 {"HAVE_LIBCRYPTO", "OFF", 0, "Enable OpenSSL CHALLENGE Support"},
117#endif /* HAVE_LIBCRYPTO */
118
119#ifdef HAVE_LIBZ
120 {"HAVE_LIBZ", "YES", 0, "zlib (ziplinks) support"},
121#else
122 {"HAVE_LIBZ", "NO", 0, "zlib (ziplinks) support"},
123#endif /* HAVE_LIBZ */
124
125#ifdef PPATH
126 {"PPATH", PPATH, 0, "Path to Pid File"},
127#else
128 {"PPATH", "NONE", 0, "Path to Pid File"},
129#endif /* PPATH */
130
212380e3
AC
131#ifdef SPATH
132 {"SPATH", SPATH, 0, "Path to Server Executable"},
133#else
134 {"SPATH", "NONE", 0, "Path to Server Executable"},
135#endif /* SPATH */
136
137 {"TS_MAX_DELTA_DEFAULT", "", TS_MAX_DELTA_DEFAULT,
138 "Maximum Allowed TS Delta from another Server"},
139 {"TS_WARN_DELTA_DEFAULT", "", TS_WARN_DELTA_DEFAULT,
140 "Maximum TS Delta before Sending Warning"},
141#ifdef USE_IODEBUG_HOOKS
142 {"USE_IODEBUG_HOOKS", "YES", 0, "IO Debugging support"},
143#else
144 {"USE_IODEBUG_HOOKS", "NO", 0, "IO Debugging support"},
145#endif
146
147 /*
148 * since we don't want to include the world here, NULL probably
149 * isn't defined by the time we read this, just use plain 0 instead
150 * 0 is guaranteed by the language to be assignable to ALL built
151 * in types with the correct results.
152 */
153 {0, 0, 0, 0}
154};
155
156
157#endif /* INCLUDED_m_info_h */