]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conf.c
- "Code Cleanups".
[ngircd-alex.git] / src / ngircd / conf.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001 by Alexander Barton (alex@barton.de)
4  *
5  * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6  * der GNU General Public License (GPL), wie von der Free Software Foundation
7  * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8  * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
11  *
12  * $Id: conf.c,v 1.3 2001/12/26 14:45:37 alex Exp $
13  *
14  * conf.h: Konfiguration des ngircd
15  *
16  * $Log: conf.c,v $
17  * Revision 1.3  2001/12/26 14:45:37  alex
18  * - "Code Cleanups".
19  *
20  * Revision 1.2  2001/12/26 03:19:57  alex
21  * - erste Konfigurations-Variablen definiert: PING/PONG-Timeout.
22  *
23  * Revision 1.1  2001/12/12 17:18:20  alex
24  * - Modul fuer Server-Konfiguration begonnen.
25  */
26
27
28 #include <portab.h>
29 #include "global.h"
30
31 #include <imp.h>
32 #include <assert.h>
33
34 #include <exp.h>
35 #include "conf.h"
36
37
38 GLOBAL VOID Conf_Init( VOID )
39 {
40         Conf_PingTimeout = 120;
41         Conf_PongTimeout = 10;
42 } /* Config_Init */
43
44
45 GLOBAL VOID Conf_Exit( VOID )
46 {
47         /* ... */
48 } /* Config_Exit */
49
50
51 /* -eof- */