removed global variable NGIRCd_NoDaemon

This commit is contained in:
Florian Westphal 2005-06-24 19:20:56 +00:00
parent d81dab99fa
commit dbea187373
4 changed files with 19 additions and 12 deletions

View File

@ -14,7 +14,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: log.c,v 1.55 2005/06/17 19:16:53 fw Exp $"; static char UNUSED id[] = "$Id: log.c,v 1.56 2005/06/24 19:20:56 fw Exp $";
#include "imp.h" #include "imp.h"
#include <assert.h> #include <assert.h>
@ -50,9 +50,10 @@ LOCAL char Init_Txt[127];
LOCAL char Error_File[FNAME_LEN]; LOCAL char Error_File[FNAME_LEN];
#endif #endif
LOCAL Is_Daemon;
LOCAL void Wall_ServerNotice PARAMS(( char *Msg )); LOCAL void Wall_ServerNotice PARAMS(( char *Msg ));
GLOBAL void Log_SetDaemonized(void) { Is_Daemon = true; }
GLOBAL void GLOBAL void
Log_Init( void ) Log_Init( void )
@ -79,7 +80,7 @@ Log_Init( void )
strlcpy( Init_Txt, "debug-mode", sizeof Init_Txt ); strlcpy( Init_Txt, "debug-mode", sizeof Init_Txt );
} }
#endif #endif
if( NGIRCd_NoDaemon ) if( ! Is_Daemon )
{ {
if( Init_Txt[0] ) strlcat( Init_Txt, ", ", sizeof Init_Txt ); if( Init_Txt[0] ) strlcat( Init_Txt, ", ", sizeof Init_Txt );
strlcat( Init_Txt, "no-daemon-mode", sizeof Init_Txt ); strlcat( Init_Txt, "no-daemon-mode", sizeof Init_Txt );
@ -129,7 +130,9 @@ Log_InitErrorfile( void )
fprintf( stderr, "Activating: %s\n\n", Init_Txt[0] ? Init_Txt : "-" ); fprintf( stderr, "Activating: %s\n\n", Init_Txt[0] ? Init_Txt : "-" );
fflush( stderr ); fflush( stderr );
#ifdef DEBUG
Log( LOG_DEBUG, "Redirected stderr to \"%s\".", Error_File ); Log( LOG_DEBUG, "Redirected stderr to \"%s\".", Error_File );
#endif
} /* Log_InitErrfile */ } /* Log_InitErrfile */
#endif #endif
@ -199,7 +202,7 @@ va_dcl
vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap ); vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap );
va_end( ap ); va_end( ap );
if( NGIRCd_NoDaemon ) if( ! Is_Daemon )
{ {
/* auf Konsole ausgeben */ /* auf Konsole ausgeben */
fprintf( stdout, "[%d:%d] %s\n", (int)getpid( ), Level, msg ); fprintf( stdout, "[%d:%d] %s\n", (int)getpid( ), Level, msg );
@ -234,14 +237,18 @@ Log_Init_Resolver( void )
#ifdef SYSLOG #ifdef SYSLOG
openlog( PACKAGE_NAME, LOG_CONS|LOG_PID, LOG_LOCAL5 ); openlog( PACKAGE_NAME, LOG_CONS|LOG_PID, LOG_LOCAL5 );
#endif #endif
#ifdef DEBUG
Log_Resolver( LOG_DEBUG, "Resolver sub-process starting, PID %d.", getpid( )); Log_Resolver( LOG_DEBUG, "Resolver sub-process starting, PID %d.", getpid( ));
#endif
} /* Log_Init_Resolver */ } /* Log_Init_Resolver */
GLOBAL void GLOBAL void
Log_Exit_Resolver( void ) Log_Exit_Resolver( void )
{ {
#ifdef DEBUG
Log_Resolver( LOG_DEBUG, "Resolver sub-process %d done.", getpid( )); Log_Resolver( LOG_DEBUG, "Resolver sub-process %d done.", getpid( ));
#endif
#ifdef SYSLOG #ifdef SYSLOG
closelog( ); closelog( );
#endif #endif
@ -281,8 +288,7 @@ va_dcl
vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap ); vsnprintf( msg, MAX_LOG_MSG_LEN, Format, ap );
va_end( ap ); va_end( ap );
/* Output */ if( ! Is_Daemon )
if( NGIRCd_NoDaemon )
{ {
/* Output to console */ /* Output to console */
fprintf( stdout, "[%d:%d] %s\n", (int)getpid( ), Level, msg ); fprintf( stdout, "[%d:%d] %s\n", (int)getpid( ), Level, msg );

View File

@ -8,7 +8,7 @@
* (at your option) any later version. * (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information. * Please read the file COPYING, README and AUTHORS for more information.
* *
* $Id: log.h,v 1.16 2005/03/19 18:43:49 fw Exp $ * $Id: log.h,v 1.17 2005/06/24 19:20:56 fw Exp $
* *
* Logging functions (header) * Logging functions (header)
*/ */
@ -49,6 +49,7 @@ GLOBAL void Log_Resolver PARAMS((const int Level, const char *Format, ... ));
GLOBAL void Log_InitErrorfile PARAMS((void )); GLOBAL void Log_InitErrorfile PARAMS((void ));
#endif #endif
GLOBAL void Log_SetDaemonized PARAMS((void));
#endif #endif

View File

@ -12,7 +12,7 @@
#include "portab.h" #include "portab.h"
static char UNUSED id[] = "$Id: ngircd.c,v 1.100 2005/06/17 23:17:09 fw Exp $"; static char UNUSED id[] = "$Id: ngircd.c,v 1.101 2005/06/24 19:20:56 fw Exp $";
/** /**
* @file * @file
@ -83,13 +83,14 @@ GLOBAL int
main( int argc, const char *argv[] ) main( int argc, const char *argv[] )
{ {
bool ok, configtest = false; bool ok, configtest = false;
bool NGIRCd_NoDaemon = false;
int i; int i;
size_t n; size_t n;
umask( 0077 ); umask( 0077 );
NGIRCd_SignalQuit = NGIRCd_SignalRestart = NGIRCd_SignalRehash = false; NGIRCd_SignalQuit = NGIRCd_SignalRestart = NGIRCd_SignalRehash = false;
NGIRCd_NoDaemon = NGIRCd_Passive = false; NGIRCd_Passive = false;
#ifdef DEBUG #ifdef DEBUG
NGIRCd_Debug = false; NGIRCd_Debug = false;
#endif #endif
@ -742,6 +743,7 @@ NGIRCd_Init( bool NGIRCd_NoDaemon )
* to disable this "daemon mode" (useful for debugging). */ * to disable this "daemon mode" (useful for debugging). */
if ( ! NGIRCd_NoDaemon ) { if ( ! NGIRCd_NoDaemon ) {
initialized = true; initialized = true;
Log_SetDaemonized();
pid = (long)fork( ); pid = (long)fork( );
if( pid > 0 ) { if( pid > 0 ) {
/* "Old" process: exit. */ /* "Old" process: exit. */

View File

@ -8,7 +8,7 @@
* (at your option) any later version. * (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information. * Please read the file COPYING, README and AUTHORS for more information.
* *
* $Id: ngircd.h,v 1.21 2005/03/19 18:43:49 fw Exp $ * $Id: ngircd.h,v 1.22 2005/06/24 19:20:56 fw Exp $
* *
* Prototypes of the "main module". * Prototypes of the "main module".
*/ */
@ -35,8 +35,6 @@ GLOBAL bool NGIRCd_Debug; /* Debug-Modus aktivieren */
GLOBAL bool NGIRCd_Sniffer; /* Sniffer aktivieren */ GLOBAL bool NGIRCd_Sniffer; /* Sniffer aktivieren */
#endif #endif
GLOBAL bool NGIRCd_NoDaemon; /* nicht im Hintergrund laufen */
GLOBAL bool NGIRCd_Passive; /* nicht zu anderen Servern connecten */ GLOBAL bool NGIRCd_Passive; /* nicht zu anderen Servern connecten */
GLOBAL bool NGIRCd_SignalQuit; /* true: quit server*/ GLOBAL bool NGIRCd_SignalQuit; /* true: quit server*/