Subversion Repositories IRCServ

Rev

Rev 2 | Rev 6 | 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 3 2024-08-25 10:23:36Z 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
 
2 nishi 23
#endif
24
 
25
/*
26
vim: syntax=c
27
*/