]> jfr.im git - solanum.git/blame - include/config.h
m_away: Add missing return value.
[solanum.git] / include / config.h
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * config.h: The ircd compile-time-configurable header.
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: config.h 3354 2007-04-03 09:21:31Z nenolod $
212380e3
AC
25 */
26
27#ifndef INCLUDED_config_h
28#define INCLUDED_config_h
29
30#include "setup.h"
31
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.
36 *
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.
40 *
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
48 */
49
50/* dirs */
51#define DPATH IRCD_PREFIX
52#define BINPATH IRCD_PREFIX "/bin/"
53#define LIBPATH IRCD_PREFIX "/lib/"
54#define MODPATH MODULE_DIR
55#define AUTOMODPATH MODULE_DIR "/autoload/"
56#define ETCPATH ETC_DIR
57#define LOGPATH LOG_DIR
58#define UHPATH HELP_DIR "/users"
59#define HPATH HELP_DIR "/opers"
60
61/* files */
c74836dc 62#define SPATH BINPATH "/" PROGRAM_PREFIX "ircd" /* ircd executable */
212380e3 63#define CPATH ETCPATH "/ircd.conf" /* ircd.conf file */
212380e3
AC
64#define MPATH ETCPATH "/ircd.motd" /* MOTD file */
65#define LPATH LOGPATH "/ircd.log" /* ircd logfile */
c74836dc 66#define PPATH PKGRUNDIR "/ircd.pid" /* pid file */
212380e3 67#define OPATH ETCPATH "/opers.motd" /* oper MOTD file */
c74836dc 68#define DBPATH PKGLOCALSTATEDIR "/ban.db" /* bandb file */
212380e3
AC
69
70/* IGNORE_BOGUS_TS
71 * Ignore bogus timestamps from other servers. Yes this will desync
72 * the network, but it will allow chanops to resync with a valid non TS 0
73 *
74 * This should be enabled network wide, or not at all.
75 */
76#undef IGNORE_BOGUS_TS
77
212380e3
AC
78/* HANGONGOODLINK and HANGONRETRYDELAY
79 * Often net breaks for a short time and it's useful to try to
80 * establishing the same connection again faster than CONNECTFREQUENCY
81 * would allow. But, to keep trying on bad connection, we require
82 * that connection has been open for certain minimum time
83 * (HANGONGOODLINK) and we give the net few seconds to steady
84 * (HANGONRETRYDELAY). This latter has to be long enough that the
85 * other end of the connection has time to notice it broke too.
86 * 1997/09/18 recommended values by ThemBones for modern EFnet
87 */
88#define HANGONRETRYDELAY 60 /* Recommended value: 30-60 seconds */
89#define HANGONGOODLINK 3600 /* Recommended value: 30-60 minutes */
90
91/* KILLCHASETIMELIMIT -
92 * Max time from the nickname change that still causes KILL
93 * automatically to switch for the current nick of that user. (seconds)
94 */
95#define KILLCHASETIMELIMIT 90 /* Recommended value: 90 */
96
97/* RATBOX_SOMAXCONN
98 * Use SOMAXCONN if OS has it, otherwise use this value for the
99 * listen(); backlog. 5 for AIX/SUNOS, 25 for other OSs.
100 */
101#define RATBOX_SOMAXCONN 25
102
fddc5ee4
JT
103/* MAX_BUFFER
104 * The amount of fds to reserve for clients exempt from limits
105 * and dns lookups.
106 */
107#define MAX_BUFFER 60
108
212380e3
AC
109/* ----------------------------------------------------------------
110 * STOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOPSTOP
111 * ----------------------------------------------------------------
112 * The options below this line should NOT be modified.
113 * ----------------------------------------------------------------
114 */
115
212380e3
AC
116#define CONFIG_RATBOX_LEVEL_2
117
118#include "defaults.h"
119#endif /* INCLUDED_config_h */