]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/ngircd.c
- IRC+-Protokoll-Flags erweitert.
[ngircd-alex.git] / src / ngircd / ngircd.c
index b54d3177f4699864d762ba8eeeeefc14d650b55d..dcd65c2f5ec907b6a99ddaee0e4ba420bf8ae89d 100644 (file)
@@ -9,7 +9,7 @@
  * 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.46 2002/05/27 13:00:50 alex Exp $
+ * $Id: ngircd.c,v 1.53 2002/09/03 23:53:19 alex Exp $
  *
  * ngircd.c: Hier beginnt alles ;-)
  */
@@ -26,6 +26,7 @@
 #include <string.h>
 #include <unistd.h>
 #include <sys/types.h>
+#include <sys/stat.h>
 #include <sys/wait.h>
 #include <time.h>
 
@@ -60,6 +61,8 @@ main( int argc, const char *argv[] )
        INT32 pid, n;
        INT i;
 
+       umask( 0077 );
+
        NGIRCd_Restart = FALSE;
        NGIRCd_Quit = FALSE;
        NGIRCd_NoDaemon = FALSE;
@@ -272,22 +275,29 @@ main( int argc, const char *argv[] )
                                if( setuid( Conf_UID ) != 0 ) Log( LOG_ERR, "Can't change User-ID to %u: %s", Conf_UID, strerror( errno ));
                        }
                }
-               Log( LOG_INFO, "Running as user %ld, group %ld.", (INT32)getuid( ), (INT32)getgid( ));
+               Log( LOG_INFO, "Running as user %ld, group %ld, with PID %ld.", (INT32)getuid( ), (INT32)getgid( ), (INT32)getpid( ));
 
                Log_InitErrorfile( );
 
                /* Signal-Handler initialisieren */
                Initialize_Signal_Handler( );
 
+               /* Protokoll- und Server-Identifikation erzeugen. Die vom ngIRCd
+                * beim PASS-Befehl verwendete Syntax sowie die erweiterten Flags
+                * sind in doc/Protocol.txt beschrieben. */
+               sprintf( NGIRCd_ProtoID, "%s%s %s|%s:%s", PROTOVER, PROTOIRCPLUS, PACKAGE, VERSION, IRCPLUSFLAGS );
+               if( Conf_OperCanMode ) strcat( NGIRCd_ProtoID, "o" );
+               strcat( NGIRCd_ProtoID, " P" );
+               Log( LOG_DEBUG, "Protocol and server ID is \"%s\".", NGIRCd_ProtoID );
+
+               /* Vordefinierte Channels anlegen */
+               Channel_InitPredefined( );
+
                /* Listen-Ports initialisieren */
                Initialize_Listen_Ports( );
 
                /* Hauptschleife */
-               while( TRUE )
-               {
-                       if( NGIRCd_Quit || NGIRCd_Restart ) break;
-                       Conn_Handler( 5 );
-               }
+               Conn_Handler( );
 
                /* Alles abmelden */
                Conn_Exit( );
@@ -340,7 +350,15 @@ NGIRCd_VersionAddition( VOID )
 #endif
 
        if( txt[0] ) strcat( txt, "-" );
+#ifdef PROTOTYPES
        strcat( txt, TARGET_CPU"/"TARGET_VENDOR"/"TARGET_OS );
+#else
+       strcat( txt, TARGET_CPU );
+       strcat( txt, "/" );
+       strcat( txt, TARGET_VENDOR );
+       strcat( txt, "/" );
+       strcat( txt, TARGET_OS );
+#endif 
 
        return txt;
 } /* NGIRCd_VersionAddition */