]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/conn.c
- Includes fuer einige Header bereinigt.
[ngircd-alex.git] / src / ngircd / conn.c
index 98d211d8106e8d7c8ff058560d9f55fb70dc0987..b67d71365a086705f309123cf7f5145ac727e9ee 100644 (file)
@@ -9,11 +9,17 @@
  * 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.39 2002/02/23 00:03:54 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.
+ *
  * Revision 1.39  2002/02/23 00:03:54  alex
  * - Ergebnistyp von Conn_GetIdle() und Conn_LastPing() auf "time_t" geaendert.
  *
@@ -784,7 +790,7 @@ LOCAL VOID Read_Request( CONN_ID Idx )
        {
                /* Socket wurde geschlossen */
                Log( LOG_INFO, "%s:%d is closing the connection ...", inet_ntoa( My_Connections[Idx].addr.sin_addr ), ntohs( My_Connections[Idx].addr.sin_port));
-               Conn_Close( Idx, "Socket closed.", NULL, FALSE );
+               Conn_Close( Idx, NULL, "Client closed connection.", FALSE );
                return;
        }
 
@@ -792,7 +798,7 @@ LOCAL VOID Read_Request( CONN_ID Idx )
        {
                /* Fehler beim Lesen */
                Log( LOG_ERR, "Read error on connection %d: %s!", Idx, strerror( errno ));
-               Conn_Close( Idx, "Read error!", NULL, FALSE );
+               Conn_Close( Idx, NULL, "Read error!", FALSE );
                return;
        }
 
@@ -903,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 );
                        }
                }