]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/ngircd.h
- Hop-Count fuer den Server selber (0) wird korrekt initialisiert.
[ngircd-alex.git] / src / ngircd / ngircd.h
index 35849c6af54a0b3fdadaea15f5a8cab6fee2145d..314bf48c18d57949086d98cbbee9707a12d2f530 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001 by Alexander Barton (alex@barton.de)
+ * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
  *
  * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
  * der GNU General Public License (GPL), wie von der Free Software Foundation
@@ -9,11 +9,17 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: ngircd.h,v 1.5 2001/12/31 03:06:03 alex Exp $
+ * $Id: ngircd.h,v 1.7 2002/01/11 14:45:18 alex Exp $
  *
  * ngircd.h: Prototypen aus dem "Haupt-Modul"
  *
  * $Log: ngircd.h,v $
+ * Revision 1.7  2002/01/11 14:45:18  alex
+ * - Kommandozeilen-Parser implementiert: Debug- und No-Daemon-Modus, Hilfe.
+ *
+ * Revision 1.6  2002/01/02 02:44:37  alex
+ * - neue Defines fuer max. Anzahl Server und Operatoren.
+ *
  * Revision 1.5  2001/12/31 03:06:03  alex
  * - das #include fuer time.h hat noch gefehlt.
  *
 GLOBAL time_t NGIRCd_Start;            /* Startzeitpunkt des Daemon */
 GLOBAL CHAR NGIRCd_StartStr[64];
 
+#ifdef DEBUG
+GLOBAL BOOLEAN NGIRCd_Debug;           /* Debug-Modus aktivieren */
+#endif
+
+GLOBAL BOOLEAN NGIRCd_NoDaemon;                /* nicht im Hintergrund laufen */
+
 GLOBAL BOOLEAN NGIRCd_Quit;            /* TRUE: ngIRCd beenden */
 GLOBAL BOOLEAN NGIRCd_Restart;         /* TRUE: neu starten */
 
 
+GLOBAL CHAR *NGIRCd_Version( VOID );
+
+
 #endif