commit - d1382fab5c956e65f35021366f1dbeeb5508a190
commit + eea1a88b24693203c629172b0708d3e55cfb096e
blob - 57f4d4608124910ce7e50ec60395ba8bce8d2975
blob + 3a784afeb57edc85b5913a7adcd327877c3f5626
--- src/ngircd/ngircd.c
+++ src/ngircd/ngircd.c
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: ngircd.c,v 1.23 2002/02/17 23:40:21 alex Exp $
+ * $Id: ngircd.c,v 1.24 2002/02/19 20:08:24 alex Exp $
*
* ngircd.c: Hier beginnt alles ;-)
*
* $Log: ngircd.c,v $
+ * Revision 1.24 2002/02/19 20:08:24 alex
+ * - "Passive-Mode" implementiert: kein Auto-Conect zu anderen Servern.
+ * - NGIRCd_DebugLevel wird (fuer VERSION-Befehl) ermittelt.
+ *
* Revision 1.23 2002/02/17 23:40:21 alex
* - neue Funktion NGIRCd_VersionAddition(). NGIRCd_Version() aufgespaltet.
*
NGIRCd_Restart = FALSE;
NGIRCd_Quit = FALSE;
NGIRCd_NoDaemon = FALSE;
+ NGIRCd_Passive = FALSE;
#ifdef DEBUG
NGIRCd_Debug = FALSE;
#endif
{
/* Lange Option */
+#ifdef DEBUG
+ if( strcmp( argv[i], "--debug" ) == 0 )
+ {
+ NGIRCd_Debug = TRUE;
+ ok = TRUE;
+ }
+#endif
if( strcmp( argv[i], "--help" ) == 0 )
{
Show_Version( ); puts( "" );
Show_Help( ); puts( "" );
exit( 1 );
}
- if( strcmp( argv[i], "--version" ) == 0 )
+ if( strcmp( argv[i], "--nodaemon" ) == 0 )
{
- Show_Version( );
- exit( 1 );
+ NGIRCd_NoDaemon = TRUE;
+ ok = TRUE;
}
-#ifdef DEBUG
- if( strcmp( argv[i], "--debug" ) == 0 )
+ if( strcmp( argv[i], "--passive" ) == 0 )
{
- NGIRCd_Debug = TRUE;
+ NGIRCd_Passive = TRUE;
ok = TRUE;
}
-#endif
#ifdef SNIFFER
if( strcmp( argv[i], "--sniffer" ) == 0 )
{
ok = TRUE;
}
#endif
- if( strcmp( argv[i], "--nodaemon" ) == 0 )
+ if( strcmp( argv[i], "--version" ) == 0 )
{
- NGIRCd_NoDaemon = TRUE;
- ok = TRUE;
+ Show_Version( );
+ exit( 1 );
}
}
else if(( argv[i][0] == '-' ) && ( argv[i][1] != '-' ))
ok = TRUE;
}
#endif
+ if( argv[i][n] == 'n' )
+ {
+ NGIRCd_NoDaemon = TRUE;
+ ok = TRUE;
+ }
+ if( argv[i][n] == 'p' )
+ {
+ NGIRCd_Passive = TRUE;
+ ok = TRUE;
+ }
#ifdef SNIFFER
if( argv[i][n] == 's' )
{
ok = TRUE;
}
#endif
- if( argv[i][n] == 'n' )
- {
- NGIRCd_NoDaemon = TRUE;
- ok = TRUE;
- }
if( ! ok )
{
}
}
+ /* Debug-Level (fuer IRC-Befehl "VERSION") ermitteln */
+ strcpy( NGIRCd_DebugLevel, "" );
+#ifdef DEBUG
+ if( NGIRCd_Debug ) strcpy( NGIRCd_DebugLevel, "1" );
+#endif
+#ifdef SNIFFER
+ if( NGIRCd_Sniffer ) strcpy( NGIRCd_DebugLevel, "2" );
+#endif
+
while( ! NGIRCd_Quit )
{
/* In der Regel wird ein Sub-Prozess ge-fork()'t, der
puts( " -d, --debug log extra debug messages" );
#endif
puts( " -n, --nodaemon don't fork and don't detatch from controlling terminal" );
+ puts( " -p, --passive disable automatic connections to other servers" );
#ifdef SNIFFER
puts( " -s, --sniffer enable network sniffer and display all IRC traffic" );
#endif