Subversion Repositories IRCServ

Rev

Rev 3 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
/* $Id: config.h.tmpl 6 2024-08-25 19:00:39Z 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
 
6 nishi 23
/* Services */
24
#define USE_NICKSERV
25
#define USE_MEMOSERV
26
#define USE_CHANSERV
27
#define USE_OPERSERV
28
 
29
/* IRCd */
30
#define USE_BAHAMUT_IRCD
31
 
2 nishi 32
#endif
33
 
34
/*
35
vim: syntax=c
36
*/