1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-12-12 09:50:29 +00:00

- vergessene Variable bei Ping-Timeout-Logmeldung ergaenzt. Opsa.

This commit is contained in:
Alexander Barton 2001-12-27 16:35:04 +00:00
parent 72bd0d7c70
commit 9793b30052

View File

@ -9,11 +9,14 @@
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS. * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
* *
* $Id: conn.c,v 1.14 2001/12/26 14:45:37 alex Exp $ * $Id: conn.c,v 1.15 2001/12/27 16:35:04 alex Exp $
* *
* connect.h: Verwaltung aller Netz-Verbindungen ("connections") * connect.h: Verwaltung aller Netz-Verbindungen ("connections")
* *
* $Log: conn.c,v $ * $Log: conn.c,v $
* Revision 1.15 2001/12/27 16:35:04 alex
* - vergessene Variable bei Ping-Timeout-Logmeldung ergaenzt. Opsa.
*
* Revision 1.14 2001/12/26 14:45:37 alex * Revision 1.14 2001/12/26 14:45:37 alex
* - "Code Cleanups". * - "Code Cleanups".
* *
@ -660,7 +663,7 @@ LOCAL VOID Check_Connections( VOID )
if( My_Connections[i].lastping < time( NULL ) - Conf_PongTimeout ) if( My_Connections[i].lastping < time( NULL ) - Conf_PongTimeout )
{ {
/* Timeout */ /* Timeout */
Log( LOG_NOTICE, "Connection %d: Ping timeout." ); Log( LOG_NOTICE, "Connection %d: Ping timeout.", i );
Conn_Close( i, "Ping timeout" ); Conn_Close( i, "Ping timeout" );
} }
} }