Commit Diff


commit - 2a69ee905aaa8ad3f0c5aa3d50fd7c16791fd0f5
commit + 8465653c6efa9ce0a976f0a6c8fd63a3ab3b2bd1
blob - df12bb29b00ca7e5dcf1d06e260a1c9ba4ee1753
blob + 98d211d8106e8d7c8ff058560d9f55fb70dc0987
--- src/ngircd/conn.c
+++ 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.38 2002/02/19 20:34:31 alex Exp $
+ * $Id: conn.c,v 1.39 2002/02/23 00:03:54 alex Exp $
  *
  * connect.h: Verwaltung aller Netz-Verbindungen ("connections")
  *
  * $Log: conn.c,v $
+ * 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 +573,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 +582,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 */
 
blob - 2c317ef91ab1486c944720aad1e514126fdc1700
blob + 3facb922e6685f5dc9344423dd0e3cada5ebda3d
--- src/ngircd/conn.h
+++ src/ngircd/conn.h
@@ -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.h,v 1.11 2002/02/11 01:00:50 alex Exp $
+ * $Id: conn.h,v 1.12 2002/02/23 00:03:54 alex Exp $
  *
  * conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header)
  *
  * $Log: conn.h,v $
+ * Revision 1.12  2002/02/23 00:03:54  alex
+ * - Ergebnistyp von Conn_GetIdle() und Conn_LastPing() auf "time_t" geaendert.
+ *
  * Revision 1.11  2002/02/11 01:00:50  alex
  * - neue Funktion Conn_LastPing().
  *
@@ -55,6 +58,9 @@
 #define __conn_h__
 
 
+#include <time.h>
+
+
 typedef INT CONN_ID;
 
 typedef struct _Res_Stat
@@ -77,8 +83,8 @@ GLOBAL BOOLEAN Conn_WriteStr( CONN_ID Idx, CHAR *Forma
 GLOBAL VOID Conn_Close( CONN_ID Idx, CHAR *LogMsg, CHAR *FwdMsg, BOOLEAN InformClient );
 
 GLOBAL VOID Conn_UpdateIdle( CONN_ID Idx );
-GLOBAL INT32 Conn_GetIdle( CONN_ID Idx );
-GLOBAL INT32 Conn_LastPing( CONN_ID Idx );
+GLOBAL time_t Conn_GetIdle( CONN_ID Idx );
+GLOBAL time_t Conn_LastPing( CONN_ID Idx );
 
 
 #endif
blob - 72d5b029287bd23c97d82154ce4d0ebfa135b70d
blob + 5bfee00f2f95f33dc54ea45b55a881f163357f31
--- src/ngircd/irc.c
+++ src/ngircd/irc.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: irc.c,v 1.64 2002/02/19 20:06:45 alex Exp $
+ * $Id: irc.c,v 1.65 2002/02/23 00:03:54 alex Exp $
  *
  * irc.c: IRC-Befehle
  *
  * $Log: irc.c,v $
+ * Revision 1.65  2002/02/23 00:03:54  alex
+ * - Ergebnistyp von Conn_GetIdle() und Conn_LastPing() auf "time_t" geaendert.
+ *
  * Revision 1.64  2002/02/19 20:06:45  alex
  * - User-Registrierung wird nicht mehr als Nick-Aenderung protokolliert,
  * - VERSION liefert nun doch wieder den Debug-Status im Reply.
@@ -1115,7 +1118,7 @@ GLOBAL BOOLEAN IRC_PONG( CLIENT *Client, REQUEST *Req 
 	/* Der Connection-Timestamp wurde schon beim Lesen aus dem Socket
 	 * aktualisiert, daher muss das hier nicht mehr gemacht werden. */
 
-	if( Client_Conn( Client ) > NONE ) Log( LOG_DEBUG, "Connection %d: received PONG. Lag: %d seconds.", Client_Conn( Client ), time( NULL ) - Conn_LastPing( Client_Conn( Client )));
+	if( Client_Conn( Client ) > NONE ) Log( LOG_DEBUG, "Connection %d: received PONG. Lag: %ld seconds.", Client_Conn( Client ), time( NULL ) - Conn_LastPing( Client_Conn( Client )));
 	else Log( LOG_DEBUG, "Connection %d: received PONG.", Client_Conn( Client ));
 
 	return CONNECTED;