1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-05-04 16:34:06 +00:00

- new constant MAX_SERVICES,

- added k and l modes to CHANMODES.
This commit is contained in:
Alexander Barton 2002-12-16 23:10:56 +00:00
parent 69ad0e386e
commit 8d024d05d2

View File

@ -8,7 +8,7 @@
* (at your option) any later version. * (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information. * Please read the file COPYING, README and AUTHORS for more information.
* *
* $Id: defines.h,v 1.39 2002/12/12 12:23:43 alex Exp $ * $Id: defines.h,v 1.40 2002/12/16 23:10:56 alex Exp $
* *
* Global defines of ngIRCd. * Global defines of ngIRCd.
*/ */
@ -35,6 +35,8 @@
#define MAX_DEFCHANNELS 16 /* max. Anzahl vorkonfigurierbarerr Channels */ #define MAX_DEFCHANNELS 16 /* max. Anzahl vorkonfigurierbarerr Channels */
#define MAX_SERVICES 8 /* maximum number of configurable services */
#define CONNECTION_POOL 100 /* Anzahl Verbindungs-Strukturen, die blockweise alloziert werden */ #define CONNECTION_POOL 100 /* Anzahl Verbindungs-Strukturen, die blockweise alloziert werden */
#define CLIENT_ID_LEN 64 /* max. ID-Laenge; vgl. RFC 2812, 1.1 und 1.2.1 */ #define CLIENT_ID_LEN 64 /* max. ID-Laenge; vgl. RFC 2812, 1.1 und 1.2.1 */
@ -74,7 +76,7 @@
#define RECONNECT_DELAY 3 /* Server-Links erst nach 3 Sekunden versuchen, wieder aufzubauen */ #define RECONNECT_DELAY 3 /* Server-Links erst nach 3 Sekunden versuchen, wieder aufzubauen */
#define USERMODES "aios" /* unterstuetzte User-Modes */ #define USERMODES "aios" /* unterstuetzte User-Modes */
#define CHANMODES "biImnoPtv" /* unterstuetzte Channel-Modes */ #define CHANMODES "biklImnoPtv" /* unterstuetzte Channel-Modes */
#define CONNECTED TRUE /* fuer die irc-xxx-Module */ #define CONNECTED TRUE /* fuer die irc-xxx-Module */
#define DISCONNECTED FALSE #define DISCONNECTED FALSE