Author: Ghostwolf <foxxe@wtfs.net>
[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  * NETWORK is the name the server claims the network is
34  */
35 #define NETWORK "UnderNet"
36
37 /* 
38  * URL_CLIENTS is a URL to where to find compatible clients
39  */
40 #define URL_CLIENTS "ftp://ftp.undernet.org/pub/irc/clients"
41
42 /*
43  * NICKLEN is the maximum length allowed for a nickname
44  *
45  * Because certain networks are very helpful in finding bugs, the below
46  * is a default that can easily be overridden in CFLAGS.  Just add 
47  * -DNICKLEN=15 to CFLAGS and save your config in .., and you can forget about
48  * it.  Thanks for helping debug guys.
49  */
50 #ifndef NICKLEN
51 #define NICKLEN         9
52 #endif
53 /*
54  * USERLEN is the maximum length allowed of a user name including an optional
55  * leading '~' if the user name has not been authenticated by an auth (RFC 931)
56  * server query.
57  */
58 #define USERLEN         10
59 /*
60  * HOSTLEN is exactly long enough to hold one (1) segment of FQDN or hostname.
61  * This is due to an historical misinterpretation of RFC 1034.
62  * 3.1. Name space specifications and terminology
63  *
64  * The domain name space is a tree structure.  Each node and leaf on the
65  * tree corresponds to a resource set (which may be empty).  The domain
66  * system makes no distinctions between the uses of the interior nodes and
67  * leaves, and this memo uses the term "node" to refer to both.
68  *
69  * Each node has a label, which is zero to 63 octets in length.  Brother
70  * nodes may not have the same label, although the same label can be used
71  * for nodes which are not brothers.  One label is reserved, and that is
72  * the null (i.e., zero length) label used for the root.
73  *
74  * This has proven not to be a problem in the past as connections with FQDN's
75  * of greater than 63 characters are rejected by the server, and most FQDN's
76  * are shorter. It is possible to have a valid FQDN longer than 63 characters.
77  */
78 #define HOSTLEN         63
79 /*
80  * ACCOUNTLEN is the maximum length for the account name, which can be set
81  * with the ACCOUNT (AC) command.  This is used for keeping track of who's
82  * logged into which account, for the benefit of irc services.
83  */
84 #define ACCOUNTLEN      12
85 /*
86  * REALLEN is the maximum length for user supplied information about a client
87  * connection (gcos). This information is set at client/server registration
88  * time.
89  */
90 #define REALLEN         50
91 /*
92  * PASSWDLEN is the maximum length for a password used for connecting servers
93  * and clients.
94  */
95 #define PASSWDLEN       20
96 /*
97  * SOCKIPLEN is the length of a dotted quad ip address "XXX.XXX.XXX.XXX"
98  */
99 #define SOCKIPLEN 15
100 /*
101  * TOPICLEN is the maximum length for channel topics and kill comments
102  */
103 #define TOPICLEN        160
104 /*
105  * AWAYLEN is the maximum length for away messages
106  */
107 #define AWAYLEN         160
108 /*
109  * BUFSIZE is exactly long enough to hold one protocol message (RFC 1459)
110  * including the line termination (\r\n).
111  */
112 #define BUFSIZE         512     /* WARNING: *DONT* CHANGE THIS!!!! */
113
114 #define MAXTARGETS      20
115 #define STARTTARGETS    10
116 #define RESERVEDTARGETS 12
117
118 #endif /* INCLUDED_ircd_defs_h */
119