about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2001-12-13 01:33:32 +0000
committerAlexander Barton <alex@barton.de>2001-12-13 01:33:32 +0000
commit0d91be084737400d9b96e4bf81294e8b566c2cbb (patch)
treee56ae0863eb920882b729591274a4c3dc2837702 /src
parent747fd2f0a3b2bf8c5c3a8bd8a186405fb29eba92 (diff)
downloadngircd-0d91be084737400d9b96e4bf81294e8b566c2cbb.tar.gz
ngircd-0d91be084737400d9b96e4bf81294e8b566c2cbb.zip
- Conn_Handler() unterstuetzt nun einen Timeout (in Sekunden).
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conn.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h
index 7cbe3635..c86a6fa7 100644
--- a/src/ngircd/conn.h
+++ b/src/ngircd/conn.h
@@ -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: conn.h,v 1.1 2001/12/12 17:18:38 alex Exp $
+ * $Id: conn.h,v 1.2 2001/12/13 01:33:32 alex Exp $
  *
  * conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header)
  *
  * $Log: conn.h,v $
+ * Revision 1.2  2001/12/13 01:33:32  alex
+ * - Conn_Handler() unterstuetzt nun einen Timeout (in Sekunden).
+ *
  * Revision 1.1  2001/12/12 17:18:38  alex
  * - Modul zur Verwaltung aller Netzwerk-Verbindungen begonnen.
  *
@@ -29,7 +32,7 @@ GLOBAL VOID Conn_Exit( VOID );
 
 GLOBAL BOOLEAN Conn_New_Listener( CONST INT Port );
 
-GLOBAL VOID Conn_Handler( VOID );
+GLOBAL VOID Conn_Handler( INT Timeout );
 
 
 #endif