Subversion Repositories IRCServ

Rev

Rev 6 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
/* $Id: config.h.tmpl 7 2024-08-25 20:49:55Z nishi $ */
2
/* This is the template config */
3
 
4
#ifndef __CONFIG_H__
5
#define __CONFIG_H__
6
 
7
/* Specify logger */
8
#undef USE_SYSLOG
9
#define USE_STDERR
10
 
3 nishi 11
/* IRC server IP */
12
#define IRC_SERVER "127.0.0.1"
13
 
14
/* IRC server port */
15
#define IRC_PORT 6667
16
 
17
/* IRC server password */
18
#define IRC_SECRET "secret"
19
 
20
/* Service name */
21
#define IRC_SERVICE "ircserv.localhost.local"
22
 
7 nishi 23
/* Service description */
24
#define IRC_SERVICE_DESCRIPTION "IRCServ services"
25
 
6 nishi 26
/* Services */
27
#define USE_NICKSERV
28
#define USE_MEMOSERV
29
#define USE_CHANSERV
30
#define USE_OPERSERV
31
 
32
/* IRCd */
33
#define USE_BAHAMUT_IRCD
34
 
2 nishi 35
#endif
36
 
37
/*
38
vim: syntax=c
39
*/