commit 660b529c104dd85f01bd6b5fe2e30c9a9904b058 from: Alexander Barton date: Sun Sep 04 23:38:32 2005 UTC Add debug code to Conn_SetPenalty(). commit - 565129f99290006eae51aec18a993bdf0077a7e0 commit + 660b529c104dd85f01bd6b5fe2e30c9a9904b058 blob - 5f998985f6befe5dc83ae3eed95b3f3b7da4126d blob + eb359b27068ab4b6374c54673766dc04ab986c48 --- src/ngircd/conn-func.c +++ src/ngircd/conn-func.c @@ -16,7 +16,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conn-func.c,v 1.7 2005/07/07 18:39:45 fw Exp $"; +static char UNUSED id[] = "$Id: conn-func.c,v 1.8 2005/09/04 23:38:32 alex Exp $"; #include "imp.h" #include @@ -73,7 +73,13 @@ Conn_SetPenalty( CONN_ID Idx, time_t Seconds ) assert( Seconds >= 0 ); t = time( NULL ) + Seconds; - if( t > My_Connections[Idx].delaytime ) My_Connections[Idx].delaytime = t; + if (t > My_Connections[Idx].delaytime) + My_Connections[Idx].delaytime = t; + +#ifdef DEBUG + Log(LOG_DEBUG, "Add penalty time on connection %d: %ld second(s).", + Idx, (long)Seconds); +#endif } /* Conn_SetPenalty */