about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-11-02 22:58:41 +0000
committerAlexander Barton <alex@barton.de>2002-11-02 22:58:41 +0000
commit650f9a2d9e9ce18dd2ccbcb1a99b522c58236383 (patch)
tree2fddb7a996d9c39925a92a7e1b09c9aa462c72d4 /src
parent05839597bf9cc74b0e390ad5c6a6b747697f7abe (diff)
downloadngircd-650f9a2d9e9ce18dd2ccbcb1a99b522c58236383.tar.gz
ngircd-650f9a2d9e9ce18dd2ccbcb1a99b522c58236383.zip
- neue Konfigurationsvariable "Conf_MaxConnections".
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conf.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ngircd/conf.h b/src/ngircd/conf.h
index 0167ab54..f61dc246 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.20 2002/11/02 22:58:41 alex Exp $
  *
  * conf.h: Konfiguration des ngircd (Header)
  */
@@ -96,6 +96,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 ));