about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-10-10 15:00:33 +0000
committerAlexander Barton <alex@barton.de>2002-10-10 15:00:33 +0000
commitdf0eb17172ee27c9584991166b5832218924f502 (patch)
tree49bd23932ed78ced1fba5c8ef3e479ea93e88b2b
parentf274ec06527b71420485973abf83def3bff6b73d (diff)
downloadngircd-df0eb17172ee27c9584991166b5832218924f502.tar.gz
ngircd-df0eb17172ee27c9584991166b5832218924f502.zip
- neue Funktion Conn_ResetPenalty().
-rw-r--r--src/ngircd/conn.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h
index bc1c1860..232c324b 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.17 2002/08/26 00:03:15 alex Exp $
+ * $Id: conn.h,v 1.18 2002/10/10 15:00:33 alex Exp $
  *
  * conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header)
  */
@@ -42,6 +42,7 @@ GLOBAL time_t Conn_GetIdle PARAMS(( CONN_ID Idx ));
 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 INT Conn_MaxFD;