blob: 942c057874608a7017f1fd38563a47654860d7b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Host used when "-h" is not given */
#define DEFAULT_HOST "irc.oftc.net"
/* Port used when "-p" is not given */
#define DEFAULT_PORT "6667"
/* Log file when "-l" is not given */
#define DEFAULT_LOG "cic.log"
/* Timestamp format; see strftime(3). */
#define TIMESTAMP_FORMAT "%Y-%m-%d %R"
/* Command prefix character. In most IRC clients this is '/'. */
#define COMMAND_PREFIX_CHARACTER ':'
/* Parting message used when none is specified with ":l ..." command. */
#define DEFAULT_PARTING_MESSAGE "cic - 500 LOC are too much!"
|