]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/conn.c
- vergessene Variable bei Ping-Timeout-Logmeldung ergaenzt. Opsa.
[ngircd-alex.git] / src / ngircd / conn.c
index c14b7504139755fa2cf482380d64069af1112ce5..e7a7e3b1358b88729e5b2a81b1fd1fb2133eb5ed 100644 (file)
@@ -9,11 +9,20 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: conn.c,v 1.12 2001/12/26 03:20:53 alex Exp $
+ * $Id: conn.c,v 1.15 2001/12/27 16:35:04 alex Exp $
  *
  * connect.h: Verwaltung aller Netz-Verbindungen ("connections")
  *
  * $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
+ * - "Code Cleanups".
+ *
+ * Revision 1.13  2001/12/26 03:36:57  alex
+ * - Verbindungen mit Lesefehlern werden nun korrekt terminiert.
+ *
  * Revision 1.12  2001/12/26 03:20:53  alex
  * - PING/PONG-Timeout implementiert.
  *
@@ -75,6 +84,7 @@
 #include <sys/socket.h>
 #include <sys/time.h>
 #include <sys/types.h>
+#include <time.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 
@@ -177,7 +187,7 @@ GLOBAL VOID Conn_Exit( VOID )
 } /* Conn_Exit */
 
 
-GLOBAL BOOLEAN Conn_New_Listener( CONST INT Port )
+GLOBAL BOOLEAN Conn_NewListener( CONST INT Port )
 {
        /* Neuen Listen-Socket erzeugen: der Server wartet dann
         * auf dem angegebenen Port auf Verbindungen. */
@@ -237,7 +247,7 @@ GLOBAL BOOLEAN Conn_New_Listener( CONST INT Port )
        Log( LOG_INFO, "Now listening on port %d, socket %d.", Port, sock );
 
        return TRUE;
-} /* Conn_New_Listener */
+} /* Conn_NewListener */
 
 
 GLOBAL VOID Conn_Handler( INT Timeout )
@@ -506,7 +516,7 @@ LOCAL VOID New_Connection( INT Sock )
        }
 
        /* Client-Struktur initialisieren */
-       if( ! Client_New_Local( idx, inet_ntoa( new_addr.sin_addr )))
+       if( ! Client_NewLocal( idx, inet_ntoa( new_addr.sin_addr )))
        {
                Log( LOG_ALERT, "Can't accept connection: can't create client structure!" );
                close( new_sock );
@@ -570,7 +580,7 @@ LOCAL VOID Read_Request( CONN_ID Idx )
        {
                /* Fehler beim Lesen */
                Log( LOG_ALERT, "Read error on connection %d: %s!", Idx, strerror( errno ));
-               Conn_Close( Idx, "Read error!" );
+               Conn_Close( Idx, NULL );
                return;
        }
 
@@ -650,14 +660,14 @@ LOCAL VOID Check_Connections( VOID )
                        if( My_Connections[i].lastping > My_Connections[i].lastdata )
                        {
                                /* es wurde bereits ein PING gesendet */
-                               if( My_Connections[i].lastping < time( NULL ) - Conf_PONG_Timeout )
+                               if( My_Connections[i].lastping < time( NULL ) - Conf_PongTimeout )
                                {
                                        /* Timeout */
-                                       Log( LOG_NOTICE, "Connection %d: Ping timeout." );
+                                       Log( LOG_NOTICE, "Connection %d: Ping timeout.", i );
                                        Conn_Close( i, "Ping timeout" );
                                }
                        }
-                       else if( My_Connections[i].lastdata < time( NULL ) - Conf_PING_Timeout )
+                       else if( My_Connections[i].lastdata < time( NULL ) - Conf_PingTimeout )
                        {
                                /* es muss ein PING gesendet werden */
                                Log( LOG_DEBUG, "Connection %d: sending PING ...", i );