cef96c6e30
ircd-ratbox is an advanced, stable and fast ircd. It is the primary ircd used on EFNet, combining the stability of an ircd required for a large production network together with a rich set of features, making it also suitable for use on smaller networks. Features include: * optional SSL support to enable encrypted connections between clients and servers, as well as server to server links * support for SSL only channels (channel mode +S) * uses sqlite3 for handling and storing k/x/d lines * support for global CIDR limits * provides adminwall command allowing admins to broadcast messages to each other * support to force nick changes request, testing and feedback by Michiel van Baak setusercontext() idea from form@ via bernd@ tested on armish and ok by sthen@
25 lines
776 B
Plaintext
25 lines
776 B
Plaintext
$OpenBSD: patch-include_config_h,v 1.1.1.1 2009/02/09 09:41:54 simon Exp $
|
|
--- include/config.h.orig Fri Sep 19 17:33:46 2008
|
|
+++ include/config.h Sun Feb 8 23:21:33 2009
|
|
@@ -45,6 +45,11 @@
|
|
* AUTOMODPATH = directory for autoloaded modules
|
|
*/
|
|
|
|
+/* users */
|
|
+#ifndef IRCD_USER
|
|
+#define IRCD_USER "_ircd-ratbox"
|
|
+#endif
|
|
+
|
|
/* dirs */
|
|
#define DPATH IRCD_PREFIX
|
|
#define BINPATH IRCD_PREFIX "/bin/"
|
|
@@ -61,7 +66,7 @@
|
|
#define DBPATH ETCPATH "/ban.db"
|
|
#define MPATH ETCPATH "/ircd.motd" /* MOTD file */
|
|
#define LPATH LOGPATH "/ircd.log" /* ircd logfile */
|
|
-#define PPATH ETCPATH "/ircd.pid" /* pid file */
|
|
+#define PPATH RUN_DIR "/ircd.pid" /* pid file */
|
|
#define OPATH ETCPATH "/opers.motd" /* oper MOTD file */
|
|
|
|
/* HANGONGOODLINK and HANGONGOODLINK
|