X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fconn.c;h=b67d71365a086705f309123cf7f5145ac727e9ee;hp=a74bc99d05fb72c3fe5e453c1cbabc8763a5c32d;hb=140d1aa505dd6a27950e8153e28a967b320104e6;hpb=d360137d940076f9e5f746609d17ab42d16ecc51 diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index a74bc99d..b67d7136 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -9,11 +9,14 @@ * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. * - * $Id: conn.c,v 1.40 2002/02/27 02:26:23 alex Exp $ + * $Id: conn.c,v 1.41 2002/02/27 14:47:04 alex Exp $ * * connect.h: Verwaltung aller Netz-Verbindungen ("connections") * * $Log: conn.c,v $ + * Revision 1.41 2002/02/27 14:47:04 alex + * - Logging bei Timeout von Verbindungen geaendert. + * * Revision 1.40 2002/02/27 02:26:23 alex * - an Conn_Close() werden zwei weitere Fehlermeldungen zum Forwarden uebergeben. * @@ -906,7 +909,7 @@ LOCAL VOID Check_Connections( VOID ) if( My_Connections[i].lastdata < time( NULL ) - Conf_PingTimeout ) { /* Timeout */ - Log( LOG_INFO, "Connection %d: Timeout.", i ); + Log( LOG_DEBUG, "Connection %d timed out ...", i ); Conn_Close( i, NULL, "Timeout", TRUE ); } }