]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/defines.h
Implemented user mode "R" and channel mode "R"
[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 #ifndef __defines_h__
13 #define __defines_h__
14
15 /**
16  * @file
17  * Global constants ("#defines") used by the ngIRCd.
18  */
19
20 #define NONE -1
21
22 #define FNAME_LEN 256                   /* Max. length of file name */
23
24 #define LINE_LEN 256                    /* Max. length of a line in the
25                                            configuration file */
26
27 #define HOST_LEN 256                    /* Max. lenght of fully qualified host
28                                            names (e. g. "abc.domain.tld") */
29
30 #define MAX_SERVERS 16                  /* Max. count of configurable servers */
31
32 #define MAX_WHOWAS 64                   /* Max. number of WHOWAS items */
33 #define DEFAULT_WHOWAS 5                /* default count for WHOWAS command */
34
35 #define CONNECTION_POOL 100             /* Size of default connection pool */
36
37 #define CLIENT_ID_LEN 64                /* Max. length of an IRC ID; see RFC
38                                            RFC 2812 section 1.1 and 1.2.1 */
39 #define CLIENT_NICK_LEN_DEFAULT 10      /* Default nick length, see. RFC 2812
40                                          * section 1.2.1 */
41 #define CLIENT_NICK_LEN 32              /* Maximum nick name length */
42 #define CLIENT_PASS_LEN 21              /* Max. password length */
43 #define CLIENT_USER_LEN 10              /* Max. length of user name ("login")
44                                            see RFC 2812, section 1.2.1 */
45 #define CLIENT_NAME_LEN 32              /* Max. length of "real names" */
46 #define CLIENT_HOST_LEN 64              /* Max. host name length */
47 #define CLIENT_MODE_LEN 16              /* Max. lenth of all client modes */
48 #define CLIENT_INFO_LEN 64              /* Max. length of server info texts */
49 #define CLIENT_AWAY_LEN 128             /* Max. length of away messages */
50 #define CLIENT_FLAGS_LEN 16             /* Max. length of client flags */
51
52 #define CHANNEL_NAME_LEN 51             /* Max. length of a channel name, see
53                                            RFC 2812 section 1.3 */
54 #define CHANNEL_MODE_LEN 9              /* Max. length of channel modes */
55
56 #define COMMAND_LEN 513                 /* Max. IRC command length, see. RFC
57                                            2812 section 3.2 */
58
59 #define READBUFFER_LEN 2048             /* Size of the read buffer of a
60                                            connection in bytes. */
61 #define WRITEBUFFER_FLUSH_LEN 4096      /* Size of a write buffer that triggers
62                                            buffer flushing if more space is
63                                            needed for storing data. */
64 #define WRITEBUFFER_MAX_LEN 32768       /* Maximum size of the write buffer of a
65                                            connection in bytes. */
66 #define WRITEBUFFER_SLINK_LEN 65536     /* Maximum size of the write buffer of a
67                                            server link connection in bytes. */
68
69 #define PROTOVER "0210"                 /* Implemented IRC protocol version,
70                                            see RFC 2813 section 4.1.1. */
71 #define PROTOIRC "-IRC"                 /* Protocol suffix, see RFC 2813
72                                            section 4.1.1 */
73 #define PROTOIRCPLUS "-IRC+"            /* Protocol suffix used by the IRC+
74                                            protocol, see doc/Protocol.txt */
75
76 #ifdef IRCPLUS
77 # define IRCPLUSFLAGS "CHLS"            /* Standard IRC+ flags */
78 #endif
79
80 #define STARTUP_DELAY 1                 /* Delay outgoing connections n seconds
81                                            after startup. */
82 #define RECONNECT_DELAY 3               /* Time to delay re-connect attempts
83                                            in seconds. */
84
85 #define USERMODES "aciorRswx"           /* Supported user modes. */
86 #define CHANMODES "biIklmnoOPRstvz"     /* Supported channel modes. */
87
88 #define CONNECTED true                  /* Internal status codes. */
89 #define DISCONNECTED false
90
91 #define DEFAULT_AWAY_MSG "Away"         /* Away message for users connected to
92                                            linked servers. */
93
94 #define DEFAULT_TOPIC_ID "-Server-"     /* Default ID for "topic owner". */
95
96 #define CONFIG_FILE "/ngircd.conf"      /* Configuration file name. */
97 #define MOTD_FILE "/ngircd.motd"        /* Name of the MOTD file. */
98 #define CHROOT_DIR ""                   /* Default chroot() directory. */
99 #define PID_FILE ""                     /* Default file for the process ID. */
100
101 #define ERROR_DIR "/tmp"                /* Error directory used in debug mode */
102
103 #define MAX_LOG_MSG_LEN 256             /* Max. length of a log message. */
104
105 #define TOKEN_OUTBOUND -2               /* Tag for outbound server links. */
106
107 #define NOTICE_TXTPREFIX ""             /* Prefix for NOTICEs from the server
108                                            to users. Some servers use '*'. */
109
110 #define CUT_TXTSUFFIX "[CUT]"           /* Suffix for oversized messages that
111                                            have been shortened and cut off. */
112
113 #endif
114
115 /* -eof- */