X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Fconf.h;h=c77a2ac83f2157431343b488ab4cd19b9750160b;hb=15d78412bc5eabef4ab7ec9027f61c8816f33022;hp=0167ab54e1f2beb79b918f654109b6b271b21ad9;hpb=4ded22b00b44551ecf3b8d325144c2463ec4fe50;p=ngircd-alex.git diff --git a/src/ngircd/conf.h b/src/ngircd/conf.h index 0167ab54..c77a2ac8 100644 --- a/src/ngircd/conf.h +++ b/src/ngircd/conf.h @@ -9,7 +9,7 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: conf.h,v 1.19 2002/09/16 09:13:40 alex Exp $ + * $Id: conf.h,v 1.21 2002/11/19 12:50:20 alex Exp $ * * conf.h: Konfiguration des ngircd (Header) */ @@ -34,7 +34,8 @@ typedef struct _Conf_Server CHAR host[HOST_LEN]; /* Hostname */ CHAR ip[16]; /* IP-Adresse (von Resolver) */ CHAR name[CLIENT_ID_LEN]; /* IRC-Client-ID */ - CHAR pwd[CLIENT_PASS_LEN]; /* Passwort */ + CHAR pwd_in[CLIENT_PASS_LEN]; /* Passwort, welches erwartet wird */ + CHAR pwd_out[CLIENT_PASS_LEN]; /* An die Gegenseite zu sendendes Passwort */ INT port; /* Server-Port */ INT group; /* Gruppe des Servers */ time_t lasttry; /* Letzter Connect-Versuch */ @@ -96,6 +97,10 @@ GLOBAL INT Conf_Channel_Count; /* Koennen IRC OPs immer Modes setzen? */ GLOBAL BOOLEAN Conf_OperCanMode; +/* Maximale Anzahl von Verbindungen */ +GLOBAL LONG Conf_MaxConnections; + + GLOBAL VOID Conf_Init PARAMS((VOID )); GLOBAL INT Conf_Test PARAMS((VOID ));