]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/conn.c
- Logging bei Timeout von Verbindungen geaendert.
[ngircd-alex.git] / src / ngircd / conn.c
index df12bb29b00ca7e5dcf1d06e260a1c9ba4ee1753..b67d71365a086705f309123cf7f5145ac727e9ee 100644 (file)
@@ -9,11 +9,20 @@
  * 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.38 2002/02/19 20:34:31 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.
+ *
  * Revision 1.38  2002/02/19 20:34:31  alex
  * - Bei ausgehenden Verbindungen wird der Ziel-Port ins Log geschrieben.
  *
@@ -570,7 +579,7 @@ GLOBAL VOID Conn_UpdateIdle( CONN_ID Idx )
 }
 
 
-GLOBAL INT32 Conn_GetIdle( CONN_ID Idx )
+GLOBAL time_t Conn_GetIdle( CONN_ID Idx )
 {
        /* Idle-Time einer Verbindung liefern (in Sekunden) */
 
@@ -579,7 +588,7 @@ GLOBAL INT32 Conn_GetIdle( CONN_ID Idx )
 } /* Conn_GetIdle */
 
 
-GLOBAL INT32 Conn_LastPing( CONN_ID Idx )
+GLOBAL time_t Conn_LastPing( CONN_ID Idx )
 {
        /* Zeitpunkt des letzten PING liefern */
 
@@ -781,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;
        }
 
@@ -789,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;
        }
 
@@ -900,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 );
                        }
                }