]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/conf.h
- MOTD-Datei ist nun konfigurierbar und wird gelesen.
[ngircd-alex.git] / src / ngircd / conf.h
index 5d360ab3c8dd1f0a00a05ae9b5ed18e38ee791d4..07ed1eda5f229889493610ed13dea9bf7e1f0f96 100644 (file)
@@ -9,11 +9,14 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: conf.h,v 1.3 2001/12/26 14:45:37 alex Exp $
+ * $Id: conf.h,v 1.4 2001/12/26 22:48:53 alex Exp $
  *
  * conf.h: Konfiguration des ngircd (Header)
  *
  * $Log: conf.h,v $
+ * Revision 1.4  2001/12/26 22:48:53  alex
+ * - MOTD-Datei ist nun konfigurierbar und wird gelesen.
+ *
  * Revision 1.3  2001/12/26 14:45:37  alex
  * - "Code Cleanups".
  *
 #define __conf_h__
 
 
-GLOBAL INT Conf_PingTimeout;
-GLOBAL INT Conf_PongTimeout;
+#define FNAME_LEN 256
+
+
+GLOBAL CHAR Conf_File[FNAME_LEN];      /* Konfigurationsdatei */
+
+GLOBAL INT Conf_PingTimeout;           /* Ping Timeout */
+GLOBAL INT Conf_PongTimeout;           /* Pong Timeout */
+
+GLOBAL CHAR Conf_MotdFile[FNAME_LEN];  /* Datei mit MOTD-Text */
 
 
 GLOBAL VOID Conf_Init( VOID );