]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conf.c
- erste Konfigurations-Variablen definiert: PING/PONG-Timeout.
[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.2 2001/12/26 03:19:57 alex Exp $
13  *
14  * conf.h: Konfiguration des ngircd
15  *
16  * $Log: conf.c,v $
17  * Revision 1.2  2001/12/26 03:19:57  alex
18  * - erste Konfigurations-Variablen definiert: PING/PONG-Timeout.
19  *
20  * Revision 1.1  2001/12/12 17:18:20  alex
21  * - Modul fuer Server-Konfiguration begonnen.
22  *
23  */
24
25
26 #include <portab.h>
27 #include "global.h"
28
29 #include <imp.h>
30 #include <assert.h>
31
32 #include <exp.h>
33 #include "conf.h"
34
35
36 GLOBAL VOID Conf_Init( VOID )
37 {
38         Conf_PING_Timeout = 120;
39         Conf_PONG_Timeout = 10;
40 } /* Config_Init */
41
42
43 GLOBAL VOID Conf_Exit( VOID )
44 {
45         /* ... */
46 } /* Config_Exit */
47
48
49 /* -eof- */