| 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: ircd_defs.h,v 7.47 2005/09/24 12:38:38 michael Exp $ |
| 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 "inet_misc.h" |
| 37 |
|
| 38 |
/* Right out of the RFC */ |
| 39 |
#define IRCD_BUFSIZE 512 /* WARNING: *DONT* CHANGE THIS!!!! */ |
| 40 |
#define HOSTLEN 63 /* Length of hostname. Updated to */ |
| 41 |
/* comply with RFC1123 */ |
| 42 |
#define PORTNAMELEN 6 /* ":31337" */ |
| 43 |
|
| 44 |
#define USERLEN 10 |
| 45 |
#define REALLEN 50 |
| 46 |
#define KILLLEN 90 |
| 47 |
#define CHANNELLEN 50 |
| 48 |
#define REASONLEN 120 |
| 49 |
#define KICKLEN 160 |
| 50 |
#define AWAYLEN 160 |
| 51 |
|
| 52 |
/* 23+1 for \0 */ |
| 53 |
#define KEYLEN 24 |
| 54 |
#define OPERNICKLEN NICKLEN*2 /* Length of OPERNICKs. */ |
| 55 |
|
| 56 |
#define USERHOST_REPLYLEN (NICKLEN+HOSTLEN+USERLEN+5) |
| 57 |
#define MAX_DATE_STRING 32 /* maximum string length for a date string */ |
| 58 |
#define IRCD_MAXNS 2 /* Maximum number of nameservers in |
| 59 |
/etc/resolv.conf we care about */ |
| 60 |
|
| 61 |
#define LOWEST_SAFE_FD 4 /* skip stdin, stdout, stderr, and profiler */ |
| 62 |
|
| 63 |
#define PLATFORMLEN 200 /* platform string used in info response */ |
| 64 |
|
| 65 |
#ifdef _WIN32 |
| 66 |
#define EAFNOSUPPORT WSAEAFNOSUPPORT |
| 67 |
#define EALREADY WSAEALREADY |
| 68 |
#define EINPROGRESS WSAEINPROGRESS |
| 69 |
#define EISCONN WSAEISCONN |
| 70 |
#define EMSGSIZE WSAEMSGSIZE |
| 71 |
#define EWOULDBLOCK WSAEWOULDBLOCK |
| 72 |
|
| 73 |
#define _UTSNAME_LENGTH 65 |
| 74 |
#define _UTSNAME_NODENAME_LENGTH _UTSNAME_LENGTH |
| 75 |
#define _UTSNAME_DOMAIN_LENGTH _UTSNAME_LENGTH |
| 76 |
struct utsname |
| 77 |
{ |
| 78 |
char sysname[_UTSNAME_LENGTH]; |
| 79 |
char nodename[_UTSNAME_NODENAME_LENGTH]; |
| 80 |
char release[_UTSNAME_LENGTH]; |
| 81 |
char version[_UTSNAME_LENGTH]; |
| 82 |
char machine[_UTSNAME_LENGTH]; |
| 83 |
char domainname[_UTSNAME_DOMAIN_LENGTH]; |
| 84 |
}; |
| 85 |
int uname (struct utsname *); |
| 86 |
#endif |
| 87 |
|
| 88 |
/* This is to get around the fact that some implementations have ss_len and |
| 89 |
* others do not |
| 90 |
*/ |
| 91 |
struct irc_ssaddr |
| 92 |
{ |
| 93 |
struct sockaddr_storage ss; |
| 94 |
unsigned char ss_len; |
| 95 |
in_port_t ss_port; |
| 96 |
}; |
| 97 |
|
| 98 |
#define REJECT_HOLD_TIME GlobalSetOptions.rejecttime |
| 99 |
|
| 100 |
#endif /* INCLUDED_ircd_defs_h */ |