X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fdefines.h;h=7abe641994ea49953acb3d1d690f1fa15d3a96f4;hp=e05a6d12b89c049a69c2062249da67b465c3f89e;hb=178f9cbdac3bbeb58600268791916f3bfbcbd958;hpb=e5a19fa3a01ab6b75b725827df402ad6176749b9 diff --git a/src/ngircd/defines.h b/src/ngircd/defines.h index e05a6d12..7abe6419 100644 --- a/src/ngircd/defines.h +++ b/src/ngircd/defines.h @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2005 Alexander Barton (alex@barton.de) + * Copyright (c)2001-2007 Alexander Barton (alex@barton.de) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: defines.h,v 1.54 2005/07/05 22:44:47 alex Exp $ + * $Id: defines.h,v 1.62 2007/11/21 12:16:36 alex Exp $ */ @@ -47,14 +47,15 @@ #define CLIENT_ID_LEN 64 /* Max. length of an IRC ID; see RFC RFC 2812 section 1.1 and 1.2.1 */ -#define CLIENT_NICK_LEN 10 /* Max. nick length, see. RFC 2812 - section 1.2.1 */ +#define CLIENT_NICK_LEN_DEFAULT 10 /* Default nick length, see. RFC 2812 + * section 1.2.1 */ +#define CLIENT_NICK_LEN 32 /* Maximum nick name length */ #define CLIENT_PASS_LEN 21 /* Max. password length */ #define CLIENT_USER_LEN 10 /* Max. length of user name ("login") see RFC 2812, section 1.2.1 */ #define CLIENT_NAME_LEN 32 /* Max. length of "real names" */ #define CLIENT_HOST_LEN 64 /* Max. host name length */ -#define CLIENT_MODE_LEN 8 /* Max. lenth of all client modes */ +#define CLIENT_MODE_LEN 9 /* Max. lenth of all client modes */ #define CLIENT_INFO_LEN 64 /* Max. length of server info texts */ #define CLIENT_AWAY_LEN 128 /* Max. length of away messages */ #define CLIENT_FLAGS_LEN 100 /* Max. length of client flags */ @@ -62,7 +63,6 @@ #define CHANNEL_NAME_LEN 51 /* Max. length of a channel name, see RFC 2812 section 1.3 */ #define CHANNEL_MODE_LEN 9 /* Max. length of channel modes */ -#define CHANNEL_TOPIC_LEN 128 /* Max. length of a channel topic */ #define COMMAND_LEN 513 /* Max. IRC command length, see. RFC 2812 section 3.2 */ @@ -71,13 +71,8 @@ connection in bytes. */ #define WRITEBUFFER_LEN 4096 /* Size of the write buffer of a connection in bytes. */ - -#ifdef ZLIB -#define ZREADBUFFER_LEN 1024 /* Size of the compressed read buffer - of a connection in bytes. */ -#define ZWRITEBUFFER_LEN 4096 /* Size of the compressed write buffer - of a connection in bytes. */ -#endif +#define WRITEBUFFER_SLINK_LEN 51200 /* Size of the write buffer of a + server link connection in bytes. */ #define PROTOVER "0210" /* Implemented IRC protocol version, see RFC 2813 section 4.1.1. */ @@ -87,7 +82,7 @@ protocol, see doc/Protocol.txt */ #ifdef IRCPLUS -# define IRCPLUSFLAGS "CL" /* Standard IRC+ flags */ +# define IRCPLUSFLAGS "CHLS" /* Standard IRC+ flags */ #endif #define STARTUP_DELAY 1 /* Delay outgoing connections n seconds @@ -96,7 +91,7 @@ in seconds. */ #define USERMODES "aios" /* Supported user modes. */ -#define CHANMODES "biklImnoPstv" /* Supported channel modes. */ +#define CHANMODES "biIklmnoPstv" /* Supported channel modes. */ #define CONNECTED true /* Internal status codes. */ #define DISCONNECTED false @@ -104,6 +99,8 @@ #define DEFAULT_AWAY_MSG "Away" /* Away message for users connected to linked servers. */ +#define DEFAULT_TOPIC_ID "-Server-" /* Default ID for "topic owner". */ + #define CONFIG_FILE "/ngircd.conf" /* Configuration file name. */ #define MOTD_FILE "/ngircd.motd" /* Name of the MOTD file. */ #define MOTD_PHRASE "" /* Default MOTD phrase string. */ @@ -122,8 +119,8 @@ #define CUT_TXTSUFFIX "[CUT]" /* Suffix for oversized messages that have been shortened and cut off. */ -#ifdef RENDEZVOUS -#define RENDEZVOUS_TYPE "_ircu._tcp." /* Service type to register with mDNS */ +#ifdef ZEROCONF +#define MDNS_TYPE "_ircu._tcp." /* Service type to register with mDNS */ #endif