]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/defines.h
ngircd: change MOTD file handling
[ngircd-alex.git] / src / ngircd / defines.h
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12
13 #ifndef __defines_h__
14 #define __defines_h__
15
16 /**
17  * @file
18  * Global constants ("#defines") used by the ngIRCd.
19  */
20
21 #define NONE -1
22
23 #define FNAME_LEN 256                   /* Max. length of file name */
24
25 #define LINE_LEN 256                    /* Max. length of a line in the
26                                            configuration file */
27
28 #define HOST_LEN 256                    /* Max. lenght of fully qualified host
29                                            names (e. g. "abc.domain.tld") */
30
31 #define MAX_SERVERS 16                  /* Max. count of configurable servers */
32
33 #define MAX_WHOWAS 64                   /* Max. number of WHOWAS items */
34 #define DEFAULT_WHOWAS 5                /* default count for WHOWAS command */
35
36 #define CONNECTION_POOL 100             /* Size of default connection pool */
37
38 #define CLIENT_ID_LEN 64                /* Max. length of an IRC ID; see RFC
39                                            RFC 2812 section 1.1 and 1.2.1 */
40 #define CLIENT_NICK_LEN_DEFAULT 10      /* Default nick length, see. RFC 2812
41                                          * section 1.2.1 */
42 #define CLIENT_NICK_LEN 32              /* Maximum nick name length */
43 #define CLIENT_PASS_LEN 21              /* Max. password length */
44 #define CLIENT_USER_LEN 10              /* Max. length of user name ("login")
45                                            see RFC 2812, section 1.2.1 */
46 #define CLIENT_NAME_LEN 32              /* Max. length of "real names" */
47 #define CLIENT_HOST_LEN 64              /* Max. host name length */
48 #define CLIENT_MODE_LEN 9               /* Max. lenth of all client modes */
49 #define CLIENT_INFO_LEN 64              /* Max. length of server info texts */
50 #define CLIENT_AWAY_LEN 128             /* Max. length of away messages */
51 #define CLIENT_FLAGS_LEN 100            /* Max. length of client flags */
52
53 #define CHANNEL_NAME_LEN 51             /* Max. length of a channel name, see
54                                            RFC 2812 section 1.3 */
55 #define CHANNEL_MODE_LEN 9              /* Max. length of channel modes */
56
57 #define COMMAND_LEN 513                 /* Max. IRC command length, see. RFC
58                                            2812 section 3.2 */
59
60 #define READBUFFER_LEN 2048             /* Size of the read buffer of a
61                                            connection in bytes. */
62 #define WRITEBUFFER_LEN 4096            /* Size of the write buffer of a
63                                            connection in bytes. */
64 #define WRITEBUFFER_SLINK_LEN 51200     /* Size of the write buffer of a
65                                            server link connection in bytes. */
66
67 #define PROTOVER "0210"                 /* Implemented IRC protocol version,
68                                            see RFC 2813 section 4.1.1. */
69 #define PROTOIRC "-IRC"                 /* Protocol suffix, see RFC 2813
70                                            section 4.1.1 */
71 #define PROTOIRCPLUS "-IRC+"            /* Protocol suffix used by the IRC+
72                                            protocol, see doc/Protocol.txt */
73
74 #ifdef IRCPLUS
75 # define IRCPLUSFLAGS "CHLS"            /* Standard IRC+ flags */
76 #endif
77
78 #define STARTUP_DELAY 1                 /* Delay outgoing connections n seconds
79                                            after startup. */
80 #define RECONNECT_DELAY 3               /* Time to delay re-connect attempts
81                                            in seconds. */
82
83 #define USERMODES "aciorsw"             /* Supported user modes. */
84 #define CHANMODES "biIklmnoPstvz"       /* Supported channel modes. */
85
86 #define CONNECTED true                  /* Internal status codes. */
87 #define DISCONNECTED false
88
89 #define DEFAULT_AWAY_MSG "Away"         /* Away message for users connected to
90                                            linked servers. */
91
92 #define DEFAULT_TOPIC_ID "-Server-"     /* Default ID for "topic owner". */
93
94 #define CONFIG_FILE "/ngircd.conf"      /* Configuration file name. */
95 #define MOTD_FILE "/ngircd.motd"        /* Name of the MOTD file. */
96 #define CHROOT_DIR ""                   /* Default chroot() directory. */
97 #define PID_FILE ""                     /* Default file for the process ID. */
98
99 #define ERROR_DIR "/tmp"                /* Error directory used in debug mode */
100
101 #define MAX_LOG_MSG_LEN 256             /* Max. length of a log message. */
102
103 #define TOKEN_OUTBOUND -2               /* Tag for outbound server links. */
104
105 #define NOTICE_TXTPREFIX ""             /* Prefix for NOTICEs from the server
106                                            to users. Some servers use '*'. */
107
108 #define CUT_TXTSUFFIX "[CUT]"           /* Suffix for oversized messages that
109                                            have been shortened and cut off. */
110
111 #ifdef ZEROCONF
112 #define MDNS_TYPE "_ircu._tcp."         /* Service type to register with mDNS */
113 #endif
114
115
116 #endif
117
118
119 /* -eof- */