Initial import
[ratbox-ambernet.git] / include / config.h
blobb84b1390b976de9e48a5bc8592b61cb82b095bff
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * config.h: The ircd compile-time-configurable header.
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
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.
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.
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
24 * $Id: config.h 21698 2006-01-14 23:34:59Z leeh $
27 #ifndef INCLUDED_config_h
28 #define INCLUDED_config_h
30 #include "setup.h"
32 /*
33 * Directory paths and filenames for UNIX systems.
34 * IRCD_PREFIX is set using ./configure --prefix, see INSTALL.
35 * The other defaults should be fine.
37 * NOTE: CHANGING THESE WILL NOT ALTER THE DIRECTORY THAT FILES WILL
38 * BE INSTALLED TO. IF YOU CHANGE THESE, DO NOT USE MAKE INSTALL,
39 * BUT COPY THE FILES MANUALLY TO WHERE YOU WANT THEM.
41 * IRCD_PREFIX = prefix for all directories,
42 * DPATH = root directory of installation,
43 * BINPATH = directory for binary files,
44 * ETCPATH = directory for configuration files,
45 * LOGPATH = directory for logfiles,
46 * MODPATH = directory for modules,
47 * AUTOMODPATH = directory for autoloaded modules
50 /* dirs */
51 #define DPATH IRCD_PREFIX
52 #define BINPATH IRCD_PREFIX "/bin/"
53 #define MODPATH MODULE_DIR
54 #define AUTOMODPATH MODULE_DIR "/autoload/"
55 #define ETCPATH ETC_DIR
56 #define LOGPATH LOG_DIR
57 #define UHPATH HELP_DIR "/users"
58 #define HPATH HELP_DIR "/opers"
60 /* files */
61 #define SPATH BINPATH "/ircd" /* ircd executable */
62 #define SLPATH BINPATH "/servlink" /* servlink executable */
63 #define CPATH ETCPATH "/ircd.conf" /* ircd.conf file */
64 #define KPATH ETCPATH "/kline.conf" /* kline file */
65 #define DLPATH ETCPATH "/dline.conf" /* dline file */
66 #define XPATH ETCPATH "/xline.conf" /* xline file */
67 #define RESVPATH ETCPATH "/resv.conf" /* resv file */
68 #define RPATH ETCPATH "/ircd.rsa" /* ircd rsa private keyfile */
69 #define MPATH ETCPATH "/ircd.motd" /* MOTD file */
70 #define LPATH LOGPATH "/ircd.log" /* ircd logfile */
71 #define PPATH ETCPATH "/ircd.pid" /* pid file */
72 #define OPATH ETCPATH "/opers.motd" /* oper MOTD file */
74 /* TS6_ONLY
76 * If this is defined only TS6 servers may link to the network. See
77 * doc/TS6.txt for more information. If your network has old servers
78 * (hyb7.0, ircd-ratbox-1.x, +CSr) or hybserv you should NOT define this.
80 #undef TS6_ONLY
82 /* HANGONGOODLINK and HANGONGOODLINK
83 * Often net breaks for a short time and it's useful to try to
84 * establishing the same connection again faster than CONNECTFREQUENCY
85 * would allow. But, to keep trying on bad connection, we require
86 * that connection has been open for certain minimum time
87 * (HANGONGOODLINK) and we give the net few seconds to steady
88 * (HANGONRETRYDELAY). This latter has to be long enough that the
89 * other end of the connection has time to notice it broke too.
90 * 1997/09/18 recommended values by ThemBones for modern EFnet
92 #define HANGONRETRYDELAY 60 /* Recommended value: 30-60 seconds */
93 #define HANGONGOODLINK 3600 /* Recommended value: 30-60 minutes */
95 /* KILLCHASETIMELIMIT -
96 * Max time from the nickname change that still causes KILL
97 * automatically to switch for the current nick of that user. (seconds)
99 #define KILLCHASETIMELIMIT 90 /* Recommended value: 90 */
101 /* RATBOX_SOMAXCONN
102 * Use SOMAXCONN if OS has it, otherwise use this value for the
103 * listen(); backlog. 5 for AIX/SUNOS, 25 for other OSs.
105 #define RATBOX_SOMAXCONN 25
107 /* ----------------------------------------------------------------
108 * STOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOP
109 * ----------------------------------------------------------------
110 * The options below this line should NOT be modified.
111 * ----------------------------------------------------------------
114 /* MAX_BUFFER
115 * The amount of fds to reserve for clients exempt from limits
116 * and dns lookups.
118 #define MAX_BUFFER 60
120 #define CONFIG_RATBOX_LEVEL_2
122 #include "defaults.h"
123 #endif /* INCLUDED_config_h */