ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/include/ircd_defs.h
Revision: 3377
Committed: Thu Apr 24 16:15:51 2014 UTC (12 years, 3 months ago) by michael
Content type: text/x-chdr
File size: 2639 byte(s)
Log Message:
- Create 8.2.x branch

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2014 ircd-hybrid development team
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 of the License, or
9 * (at your option) 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 * USA
20 */
21
22 /*! \file ircd_defs.h
23 * \brief A header for ircd global definitions.
24 * \version $Id$
25 */
26
27 /* ircd_defs.h - Global size definitions for record entries used
28 * througout ircd. Please think 3 times before adding anything to this
29 * file.
30 */
31 #ifndef INCLUDED_ircd_defs_h
32 #define INCLUDED_ircd_defs_h
33 #include "stdinc.h"
34
35 /* Right out of the RFC */
36 #define IRCD_BUFSIZE 512 /* WARNING: *DONT* CHANGE THIS!!!! */
37 #define HOSTLEN 63 /* Length of hostname. Updated to comply
38 with RFC 1123 */
39 #define NICKLEN 30
40 #define USERLEN 10
41 #define SVIDLEN 30
42 #define PORTNAMELEN 6 /* ":31337" */
43
44 #define HOSTIPLEN 45 /* sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255") */
45 #define PASSWDLEN 128
46 #define IDLEN 12 /* this is the maximum length, not the actual
47 generated length; DO NOT CHANGE! */
48 #define REALLEN 50
49 #define LOCAL_CHANNELLEN 50
50 #define CHANNELLEN 200
51 #define TOPICLEN 300
52 #define KILLLEN 180
53 #define REASONLEN 180
54 #define KICKLEN 180
55 #define AWAYLEN 180
56 #define KEYLEN 23
57
58 #define USERHOST_REPLYLEN (NICKLEN+HOSTLEN+USERLEN+5)
59 #define MAX_DATE_STRING 32 /* maximum string length for a date string */
60 #define IRCD_MAXNS 3 /* Maximum number of nameservers in
61 /etc/resolv.conf we care about */
62
63 #define LOWEST_SAFE_FD 4 /* skip stdin, stdout, stderr, and profiler */
64
65 /* This is to get around the fact that some implementations have ss_len and
66 * others do not
67 */
68 struct irc_ssaddr
69 {
70 struct sockaddr_storage ss;
71 unsigned char ss_len;
72 in_port_t ss_port;
73 };
74 #endif /* INCLUDED_ircd_defs_h */

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision