commit - c4199b04ab38a2dcf4c7363d6a1585270e5de245
commit + 1751c869257a7996da2bf85fafd390c120d7c878
blob - b1f392808b9af02bd91c7653dd4d561a34988e0b
blob + 8cc3950c64dc3279f9ab4eae4ce7254ce6802135
--- src/ngircd/ngircd.c
+++ src/ngircd/ngircd.c
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: ngircd.c,v 1.8 2001/12/14 08:15:26 alex Exp $
+ * $Id: ngircd.c,v 1.9 2001/12/21 22:24:50 alex Exp $
*
* ngircd.c: Hier beginnt alles ;-)
*
* $Log: ngircd.c,v $
+ * Revision 1.9 2001/12/21 22:24:50 alex
+ * - neues Modul "parse" wird initialisiert und abgemeldet.
+ *
* Revision 1.8 2001/12/14 08:15:26 alex
* - neue Module (irc, client, channel) werden an- und abgemeldet.
* - zweiter Listen-Socket wird zu Testzwecken konfiguriert.
* - Test auf stdint.h (HAVE_STDINT_H) hinzugefuegt.
*
* Revision 1.1.1.1 2001/12/11 21:53:04 alex
- * Imported sources to CVS.
+ * - Imported sources to CVS.
*/
#include "conn.h"
#include "irc.h"
#include "log.h"
+#include "parse.h"
#include <exp.h>
#include "ngircd.h"
/* Module initialisieren */
Log_Init( );
Conf_Init( );
+ Parse_Init( );
IRC_Init( );
Channel_Init( );
Client_Init( );
Client_Exit( );
Channel_Exit( );
IRC_Exit( );
+ Parse_Exit( );
Conf_Exit( );
Log_Exit( );