07e05e5ced83dbfd501b480a5349b3747e2f29b4
[ircu2.10.12-pk.git] / include / ircd_defs.h
1 /*
2  * IRC - Internet Relay Chat, include/ircd_defs.h
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * Commentary by Bleep (Thomas Helvey)
21  *
22  * $Id$
23  */
24 #ifndef INCLUDED_ircd_defs_h
25 #define INCLUDED_ircd_defs_h
26 /*
27  * Definitions used everywhere in the server
28  * NOTE: Changing any of these definitions is equivalent to a protocol
29  * revision. Every server on a given network must also use the same sizes.
30  */
31
32 /*
33  * NICKLEN is the maximum length allowed for a nickname
34  */
35 #define NICKLEN         9
36 /*
37  * USERLEN is the maximum length allowed of a user name including an optional
38  * leading '~' if the user name has not been authenticated by an auth (RFC 931)
39  * server query.
40  */
41 #define USERLEN         10
42 /*
43  * HOSTLEN is exactly long enough to hold one (1) segment of FQDN or hostname.
44  * This is due to an historical misinterpretation of RFC 1034.
45  * 3.1. Name space specifications and terminology
46  *
47  * The domain name space is a tree structure.  Each node and leaf on the
48  * tree corresponds to a resource set (which may be empty).  The domain
49  * system makes no distinctions between the uses of the interior nodes and
50  * leaves, and this memo uses the term "node" to refer to both.
51  *
52  * Each node has a label, which is zero to 63 octets in length.  Brother
53  * nodes may not have the same label, although the same label can be used
54  * for nodes which are not brothers.  One label is reserved, and that is
55  * the null (i.e., zero length) label used for the root.
56  *
57  * This has proven not to be a problem in the past as connections with FQDN's
58  * of greater than 63 characters are rejected by the server, and most FQDN's
59  * are shorter. It is possible to have a valid FQDN longer than 63 characters.
60  */
61 #define HOSTLEN         63
62 /*
63  * REALLEN is the maximum length for user supplied information about a client
64  * connection (gcos). This information is set at client/server registration
65  * time.
66  */
67 #define REALLEN         50
68 /*
69  * PASSWDLEN is the maximum length for a password used for connecting servers
70  * and clients.
71  */
72 #define PASSWDLEN       20
73 /*
74  * SOCKIPLEN is the length of a dotted quad ip address "XXX.XXX.XXX.XXX"
75  */
76 #define SOCKIPLEN 15
77 /*
78  * TOPICLEN is the maximum length for channel topics, kill comments,
79  * and quit comments
80  */
81 #define TOPICLEN        160
82 /*
83  * BUFSIZE is exactly long enough to hold one protocol message (RFC 1459)
84  * including the line termination (\r\n).
85  */
86 #define BUFSIZE         512     /* WARNING: *DONT* CHANGE THIS!!!! */
87
88 #define MAXTARGETS      20
89 #define STARTTARGETS    10
90 #define RESERVEDTARGETS 12
91
92 #endif /* INCLUDED_ircd_defs_h */
93