commit - c2ee5437da3483aacf2ab254370b9594776de7ad
commit + 22cf0c5def2e57a9cb18a71e9eb9c2fa04415e36
blob - 71b5fc48e7eab16d897a05a271dc01b9e0db06fc
blob + 6add9fb7dae784b6fb913c0666f8a56f4759dea9
--- 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.18 2002/01/11 14:45:18 alex Exp $
+ * $Id: ngircd.c,v 1.19 2002/01/12 00:17:28 alex Exp $
*
* ngircd.c: Hier beginnt alles ;-)
*
* $Log: ngircd.c,v $
+ * Revision 1.19 2002/01/12 00:17:28 alex
+ * - ngIRCd wandelt sich nun selber in einen Daemon (Hintergrundprozess) um.
+ *
* Revision 1.18 2002/01/11 14:45:18 alex
* - Kommandozeilen-Parser implementiert: Debug- und No-Daemon-Modus, Hilfe.
*
#include <imp.h>
#include <assert.h>
+#include <errno.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
+#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
GLOBAL INT main( INT argc, CONST CHAR *argv[] )
{
BOOLEAN ok;
- INT i, n;
+ INT pid, i, n;
/* Datentypen der portab-Library ueberpruefen */
portab_check_types( );
while( ! NGIRCd_Quit )
{
+ /* In der Regel wird ein Sub-Prozess ge-fork()'t, der
+ * nicht mehr mit dem Terminal verbunden ist. Mit der
+ * Option "--nodaemon" kann dies (z.B. zum Debuggen)
+ * verhindert werden. */
+ if( ! NGIRCd_NoDaemon )
+ {
+ /* Daemon im Hintergrund erzeugen */
+ pid = fork( );
+ if( pid > 0 )
+ {
+ /* "alter" Prozess */
+ exit( 0 );
+ }
+ if( pid < 0 )
+ {
+ /* Fehler */
+ printf( PACKAGE": Can't fork: %s!\nFatal error, exiting now ...", strerror( errno ));
+ exit( 1 );
+ }
+ setsid( );
+ chdir( "/" );
+ }
+
/* Globale Variablen initialisieren */
NGIRCd_Start = time( NULL );
strftime( NGIRCd_StartStr, 64, "%a %b %d %Y at %H:%M:%S (%Z)", localtime( &NGIRCd_Start ));