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