ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/ircd_defs.h
Revision: 1549
Committed: Mon Oct 1 18:11:11 2012 UTC (11 years, 5 months ago) by michael
Content type: text/x-chdr
Original Path: ircd-hybrid-8/include/ircd_defs.h
File size: 2675 byte(s)
Log Message:
- Removed general::kline_with_reason configuration options. It's now enabled
  by default
- Removed remnants of the broken reject holding code

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 * ircd_defs.h: A header for ircd global definitions.
4 *
5 * Copyright (C) 2002 by the past and present ircd coders, and others.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 *
22 * $Id$
23 */
24
25 /*
26 * NOTE: NICKLEN and TOPICLEN do not live here anymore. Set it with configure
27 * Otherwise there are no user servicable part here.
28 *
29 */
30 /* ircd_defs.h - Global size definitions for record entries used
31 * througout ircd. Please think 3 times before adding anything to this
32 * file.
33 */
34 #ifndef INCLUDED_ircd_defs_h
35 #define INCLUDED_ircd_defs_h
36 #include "stdinc.h"
37 /* Right out of the RFC */
38 #define IRCD_BUFSIZE 512 /* WARNING: *DONT* CHANGE THIS!!!! */
39 #define HOSTLEN 63 /* Length of hostname. Updated to comply
40 with RFC 1123 */
41 #define USERLEN 10
42 #define PORTNAMELEN 6 /* ":31337" */
43
44 #define HOSTIPLEN 45 /* sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255") */
45 #define PASSWDLEN 20
46 #define IDLEN 12 /* this is the maximum length, not the actual
47 generated length; DO NOT CHANGE! */
48 #define REALLEN 50
49 #define KILLLEN 90
50 #define LOCAL_CHANNELLEN 50
51 #define CHANNELLEN 200
52 #define REASONLEN 120
53 #define KICKLEN 160
54 #define AWAYLEN 160
55 #define KEYLEN 23
56
57 #define USERHOST_REPLYLEN (NICKLEN+HOSTLEN+USERLEN+5)
58 #define MAX_DATE_STRING 32 /* maximum string length for a date string */
59 #define IRCD_MAXNS 3 /* Maximum number of nameservers in
60 /etc/resolv.conf we care about */
61
62 #define LOWEST_SAFE_FD 4 /* skip stdin, stdout, stderr, and profiler */
63
64 /* This is to get around the fact that some implementations have ss_len and
65 * others do not
66 */
67 struct irc_ssaddr
68 {
69 struct sockaddr_storage ss;
70 unsigned char ss_len;
71 in_port_t ss_port;
72 };
73 #endif /* INCLUDED_ircd_defs_h */

Properties

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