diff options
| author | Alexander Barton <alex@barton.de> | 2002-02-27 14:47:04 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2002-02-27 14:47:04 +0000 |
| commit | 140d1aa505dd6a27950e8153e28a967b320104e6 (patch) | |
| tree | df8c16c86858faea256d90e881f7f550486d20d0 /src | |
| parent | d360137d940076f9e5f746609d17ab42d16ecc51 (diff) | |
| download | ngircd-140d1aa505dd6a27950e8153e28a967b320104e6.tar.gz ngircd-140d1aa505dd6a27950e8153e28a967b320104e6.zip | |
- Logging bei Timeout von Verbindungen geaendert.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/conn.c | 7 |
1 files changed, 5 insertions, 2 deletions
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 ); } } |