2001-12-31 03:18:51 +01:00
|
|
|
/*
|
|
|
|
* ngIRCd -- The Next Generation IRC Daemon
|
2005-07-02 16:33:45 +02:00
|
|
|
* Copyright (c)2001-2005 Alexander Barton (alex@barton.de)
|
2001-12-31 03:18:51 +01:00
|
|
|
*
|
2002-12-12 13:23:43 +01:00
|
|
|
* 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
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
* Please read the file COPYING, README and AUTHORS for more information.
|
2001-12-31 03:18:51 +01:00
|
|
|
*
|
2005-07-06 00:44:47 +02:00
|
|
|
* $Id: defines.h,v 1.54 2005/07/05 22:44:47 alex Exp $
|
2001-12-31 03:18:51 +01:00
|
|
|
*/
|
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
|
2001-12-31 03:18:51 +01:00
|
|
|
#ifndef __defines_h__
|
|
|
|
#define __defines_h__
|
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Global constants ("#defines") used by the ngIRCd.
|
|
|
|
*/
|
2001-12-31 03:18:51 +01:00
|
|
|
|
|
|
|
#define NONE -1
|
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define FNAME_LEN 256 /* Max. length of file name */
|
2001-12-31 03:18:51 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define LINE_LEN 256 /* Max. length of a line in the
|
|
|
|
configuration file */
|
2001-12-31 03:18:51 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define HOST_LEN 256 /* Max. lenght of fully qualified host
|
|
|
|
names (e. g. "abc.domain.tld") */
|
2001-12-31 03:18:51 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define MAX_LISTEN_PORTS 16 /* Max. count of listening ports */
|
2002-01-02 03:44:36 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define MAX_OPERATORS 16 /* Max. count of configurable IRC Ops */
|
2002-01-02 03:44:36 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define MAX_SERVERS 16 /* Max. count of configurable servers */
|
2002-01-02 03:44:36 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define MAX_DEFCHANNELS 16 /* Max. count of predefined channels */
|
2002-05-21 02:10:16 +02:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define MAX_SERVICES 8 /* Max. count of services */
|
2002-12-17 00:10:56 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define MAX_WHOWAS 64 /* Max. number of WHOWAS items */
|
2005-05-16 14:22:32 +02:00
|
|
|
#define DEFAULT_WHOWAS 5 /* default count for WHOWAS command */
|
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define CONNECTION_POOL 100 /* Size of default connection pool */
|
|
|
|
|
|
|
|
#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_PASS_LEN 21 /* Max. password length */
|
2005-07-06 00:44:47 +02:00
|
|
|
#define CLIENT_USER_LEN 10 /* Max. length of user name ("login")
|
|
|
|
see RFC 2812, section 1.2.1 */
|
2005-07-02 16:33:45 +02:00
|
|
|
#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_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 */
|
|
|
|
|
|
|
|
#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 */
|
|
|
|
|
|
|
|
#define READBUFFER_LEN 2048 /* Size of the read buffer of a
|
|
|
|
connection in bytes. */
|
|
|
|
#define WRITEBUFFER_LEN 4096 /* Size of the write buffer of a
|
|
|
|
connection in bytes. */
|
2001-12-31 03:18:51 +01:00
|
|
|
|
2003-12-26 16:55:07 +01:00
|
|
|
#ifdef ZLIB
|
2005-07-02 16:33:45 +02:00
|
|
|
#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. */
|
2002-11-27 00:07:24 +01:00
|
|
|
#endif
|
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define PROTOVER "0210" /* Implemented IRC protocol version,
|
|
|
|
see RFC 2813 section 4.1.1. */
|
|
|
|
#define PROTOIRC "-IRC" /* Protocol suffix, see RFC 2813
|
|
|
|
section 4.1.1 */
|
|
|
|
#define PROTOIRCPLUS "-IRC+" /* Protocol suffix used by the IRC+
|
|
|
|
protocol, see doc/Protocol.txt */
|
2002-01-03 03:24:00 +01:00
|
|
|
|
2002-09-07 19:58:00 +02:00
|
|
|
#ifdef IRCPLUS
|
2005-07-02 16:33:45 +02:00
|
|
|
# define IRCPLUSFLAGS "CL" /* Standard IRC+ flags */
|
2002-09-07 19:58:00 +02:00
|
|
|
#endif
|
2002-09-04 01:53:41 +02:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define STARTUP_DELAY 1 /* Delay outgoing connections n seconds
|
|
|
|
after startup. */
|
|
|
|
#define RECONNECT_DELAY 3 /* Time to delay re-connect attempts
|
|
|
|
in seconds. */
|
2002-01-03 03:24:00 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define USERMODES "aios" /* Supported user modes. */
|
|
|
|
#define CHANMODES "biklImnoPstv" /* Supported channel modes. */
|
2002-02-13 18:45:57 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define CONNECTED true /* Internal status codes. */
|
2005-03-19 19:43:48 +01:00
|
|
|
#define DISCONNECTED false
|
2002-02-28 00:24:58 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define DEFAULT_AWAY_MSG "Away" /* Away message for users connected to
|
|
|
|
linked servers. */
|
|
|
|
|
|
|
|
#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. */
|
|
|
|
#define CHROOT_DIR "" /* Default chroot() directory. */
|
|
|
|
#define PID_FILE "" /* Default file for the process ID. */
|
2002-03-04 02:05:10 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define ERROR_DIR "/tmp" /* Error directory used in debug mode */
|
2002-12-26 14:17:56 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define MAX_LOG_MSG_LEN 256 /* Max. length of a log message. */
|
2002-03-06 16:35:19 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define TOKEN_OUTBOUND -2 /* Tag for outbound server links. */
|
2002-03-27 17:39:50 +01:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define NOTICE_TXTPREFIX "" /* Prefix for NOTICEs from the server
|
|
|
|
to users. Some servers use '*'. */
|
2002-04-08 03:18:14 +02:00
|
|
|
|
2005-07-02 16:33:45 +02:00
|
|
|
#define CUT_TXTSUFFIX "[CUT]" /* Suffix for oversized messages that
|
|
|
|
have been shortened and cut off. */
|
2002-10-09 15:15:45 +02:00
|
|
|
|
2003-02-23 13:03:39 +01:00
|
|
|
#ifdef RENDEZVOUS
|
2005-07-02 16:33:45 +02:00
|
|
|
#define RENDEZVOUS_TYPE "_ircu._tcp." /* Service type to register with mDNS */
|
2003-02-23 13:03:39 +01:00
|
|
|
#endif
|
|
|
|
|
2002-02-13 18:45:57 +01:00
|
|
|
|
2001-12-31 03:18:51 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* -eof- */
|