Subversion Repositories IRCServ

Rev

Rev 2 | Rev 6 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 3
Line 1... Line 1...
1
/* $Id: config.h.tmpl 2 2024-08-25 10:11:51Z nishi $ */
1
/* $Id: config.h.tmpl 3 2024-08-25 10:23:36Z nishi $ */
2
/* This is the template config */
2
/* This is the template config */
3
 
3
 
4
#ifndef __CONFIG_H__
4
#ifndef __CONFIG_H__
5
#define __CONFIG_H__
5
#define __CONFIG_H__
6
 
6
 
7
/* Specify logger */
7
/* Specify logger */
8
#undef USE_SYSLOG
8
#undef USE_SYSLOG
9
#define USE_STDERR
9
#define USE_STDERR
10
 
10
 
-
 
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
 
11
#endif
23
#endif
12
 
24
 
13
/*
25
/*
14
vim: syntax=c
26
vim: syntax=c
15
*/
27
*/