blob: dc88ad0d4e55f014e5949efdd6517af8c66c9e8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Host used when "-h" is not given */
#define DEFAULT_HOST "irc.oftc.net"
/* Port used when "-p" is not given */
#define DEFAULT_PORT "6667"
/* 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!"
|