diff options
| author | Alexander Barton <alex@barton.de> | 2002-02-19 20:07:48 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-02-19 20:07:48 +0000 |
| commit | d1382fab5c956e65f35021366f1dbeeb5508a190 (patch) | |
| tree | 7919d63677b1c3be0d3ff901bf18e6c500b227e2 /src | |
| parent | fcb47ae64b8915efdb8ed6f589d04bbc48bf9485 (diff) | |
| download | ngircd-d1382fab5c956e65f35021366f1dbeeb5508a190.tar.gz ngircd-d1382fab5c956e65f35021366f1dbeeb5508a190.zip | |
- Neue Variablen NGIRCd_DebugVersion und NGIRCd_Passive.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/ngircd.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ngircd/ngircd.h b/src/ngircd/ngircd.h index 81ef8f46..c4378446 100644 --- a/src/ngircd/ngircd.h +++ b/src/ngircd/ngircd.h @@ -9,11 +9,14 @@ * 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.9 2002/02/17 23:40:32 alex Exp $ + * $Id: ngircd.h,v 1.10 2002/02/19 20:07:48 alex Exp $ * * ngircd.h: Prototypen aus dem "Haupt-Modul" * * $Log: ngircd.h,v $ + * Revision 1.10 2002/02/19 20:07:48 alex + * - Neue Variablen NGIRCd_DebugVersion und NGIRCd_Passive. + * * Revision 1.9 2002/02/17 23:40:32 alex * - Neue Funktion NGIRCd_VersionAddition(). * @@ -64,9 +67,13 @@ GLOBAL BOOLEAN NGIRCd_Sniffer; /* Sniffer aktivieren */ GLOBAL BOOLEAN NGIRCd_NoDaemon; /* nicht im Hintergrund laufen */ +GLOBAL BOOLEAN NGIRCd_Passive; /* nicht zu anderen Servern connecten */ + GLOBAL BOOLEAN NGIRCd_Quit; /* TRUE: ngIRCd beenden */ GLOBAL BOOLEAN NGIRCd_Restart; /* TRUE: neu starten */ +GLOBAL CHAR NGIRCd_DebugLevel[2]; /* Debug-Level fuer IRC_VERSION() */ + GLOBAL CHAR *NGIRCd_Version( VOID ); GLOBAL CHAR *NGIRCd_VersionAddition( VOID ); |