diff options
| author | Alexander Barton <alex@barton.de> | 2002-11-02 22:58:19 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-11-02 22:58:19 +0000 |
| commit | 05839597bf9cc74b0e390ad5c6a6b747697f7abe (patch) | |
| tree | 2cde4f732692923a5721aa36cc23deab9e46d32d /src | |
| parent | 8eac8bcbfc33c58953b38d784fedcc8dcc79dea9 (diff) | |
| download | ngircd-05839597bf9cc74b0e390ad5c6a6b747697f7abe.tar.gz ngircd-05839597bf9cc74b0e390ad5c6a6b747697f7abe.zip | |
Neue Funktionen: Conn_First(), Conn_Next(), Conn_ClearFlags(), Conn_SetFlag() und Conn_Flag().
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/conn.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h index 232c324b..5a8d3e10 100644 --- a/src/ngircd/conn.h +++ b/src/ngircd/conn.h @@ -9,7 +9,7 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: conn.h,v 1.18 2002/10/10 15:00:33 alex Exp $ + * $Id: conn.h,v 1.19 2002/11/02 22:58:19 alex Exp $ * * conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header) */ @@ -44,6 +44,13 @@ GLOBAL time_t Conn_LastPing PARAMS(( CONN_ID Idx )); GLOBAL VOID Conn_SetPenalty PARAMS(( CONN_ID Idx, time_t Seconds )); GLOBAL VOID Conn_ResetPenalty PARAMS(( CONN_ID Idx )); +GLOBAL VOID Conn_ClearFlags PARAMS(( VOID )); +GLOBAL BOOLEAN Conn_Flag PARAMS(( CONN_ID Idx )); +GLOBAL VOID Conn_SetFlag PARAMS(( CONN_ID Idx )); + +GLOBAL CONN_ID Conn_First PARAMS(( VOID )); +GLOBAL CONN_ID Conn_Next PARAMS(( CONN_ID Idx )); + GLOBAL INT Conn_MaxFD; |