diff options
| author | Alexander Barton <alex@barton.de> | 2001-12-14 08:15:45 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2001-12-14 08:15:45 +0000 |
| commit | 933e62fb7d72c9ab386de7571ea45c125c54cbe8 (patch) | |
| tree | 7024ab4ac72ef86e6870be17cd61a0052a6c40ad /src | |
| parent | 58c6c8f3388aad9e7c806100b41b0f5ba4cea16e (diff) | |
| download | ngircd-933e62fb7d72c9ab386de7571ea45c125c54cbe8.tar.gz ngircd-933e62fb7d72c9ab386de7571ea45c125c54cbe8.zip | |
- CONN_ID wird definiert.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/conn.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index c86a6fa7..165c4896 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.2 2001/12/13 01:33:32 alex Exp $ + * $Id: conn.h,v 1.3 2001/12/14 08:15:45 alex Exp $ * * conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header) * * $Log: conn.h,v $ + * Revision 1.3 2001/12/14 08:15:45 alex + * - CONN_ID wird definiert. + * * Revision 1.2 2001/12/13 01:33:32 alex * - Conn_Handler() unterstuetzt nun einen Timeout (in Sekunden). * @@ -27,6 +30,9 @@ #define __conn_h__ +typedef INT CONN_ID; + + GLOBAL VOID Conn_Init( VOID ); GLOBAL VOID Conn_Exit( VOID ); |