Module: ngircd.git Branch: master Commit: 5d921984873b708c2f91bed01689f6351d95c233 URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=5d921...
Author: Alexander Barton alex@barton.de Date: Mon Dec 31 18:23:21 2012 +0100
Get rid of Conn_ResetPenalty(), it is unused
---
src/ngircd/conn-func.c | 18 ------------------ src/ngircd/conn-func.h | 1 - 2 files changed, 19 deletions(-)
diff --git a/src/ngircd/conn-func.c b/src/ngircd/conn-func.c index e81a79e..9647674 100644 --- a/src/ngircd/conn-func.c +++ b/src/ngircd/conn-func.c @@ -117,24 +117,6 @@ Conn_SetPenalty(CONN_ID Idx, time_t Seconds) } /* Conn_SetPenalty */
-/** - * Reset the "penalty time" for one connection. - * - * @param Idx Connection index. - * @see Conn_SetPenalty - */ -GLOBAL void -Conn_ResetPenalty(CONN_ID Idx) -{ - assert(Idx > NONE); - - My_Connections[Idx].delaytime = 0; -#ifdef DEBUG - Log(LOG_DEBUG, "Penalty time on connection %d has been reset."); -#endif -} /* Conn_ResetPenalty */ - - GLOBAL void Conn_ClearFlags( void ) { diff --git a/src/ngircd/conn-func.h b/src/ngircd/conn-func.h index 21bbcdb..1d05acc 100644 --- a/src/ngircd/conn-func.h +++ b/src/ngircd/conn-func.h @@ -45,7 +45,6 @@ GLOBAL long Conn_RecvBytes PARAMS(( CONN_ID Idx )); GLOBAL const char *Conn_IPA 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 int Conn_Flag PARAMS(( CONN_ID Idx ));
ngircd-commits@lists.barton.de