commit - 180eb810cf878c726b58b263da0020a93e25c698
commit + f060db5ec59bcbb736dab70ddd61db6230c10e92
blob - 8cacaa91d93918526956ea2ca2e1477c5e9ff026
blob + 9bfb5f1e3f1ac85f6fa7676dc8cbf677c9d6e72b
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
* 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.75 2002/10/03 21:03:11 alex Exp $
+ * $Id: conn.c,v 1.76 2002/10/09 13:15:08 alex Exp $
*
* connect.h: Verwaltung aller Netz-Verbindungen ("connections")
*/
time_t lastping; /* Letzter PING */
time_t lastprivmsg; /* Letzte PRIVMSG */
time_t delaytime; /* Nicht beachten bis ("penalty") */
+ INT32 bytes_in, bytes_out; /* Counter fuer Statistik */
} CONNECTION;
assert( Idx >= 0 );
assert( My_Connections[Idx].sock > NONE );
+
+ c = Client_GetFromConn( Idx );
if( InformClient )
{
+ /* Statistik an Client melden, wenn User */
+ if(( c != NULL ) && ( Client_Type( c ) == CLIENT_USER ))
+ {
+ Conn_WriteStr( Idx, "NOTICE %s :%sConnection statistics: %.1f kb received, %.1f kb sent.", Client_ThisServer( ), NOTICE_TXTPREFIX, (double)My_Connections[Idx].bytes_in / 1024, (double)My_Connections[Idx].bytes_out / 1024 );
+ }
+
+ /* ERROR an Client schicken (von RFC so vorgesehen!) */
if( FwdMsg ) Conn_WriteStr( Idx, "ERROR :%s", FwdMsg );
else Conn_WriteStr( Idx, "ERROR :Closing connection." );
if( My_Connections[Idx].sock == NONE ) return;
Log( LOG_INFO, "Connection %d with %s:%d closed.", Idx, inet_ntoa( My_Connections[Idx].addr.sin_addr ), ntohs( My_Connections[Idx].addr.sin_port ));
}
- c = Client_GetFromConn( Idx );
if( c ) Client_Destroy( c, LogMsg, FwdMsg, TRUE );
if( My_Connections[Idx].res_stat )
Conn_Close( Idx, "Write error (buffer)!", NULL, FALSE );
return FALSE;
}
+
+ /* Connection-Statistik aktualisieren */
+ My_Connections[Idx].bytes_out += len;
/* Puffer anpassen */
My_Connections[Idx].wdatalen -= len;
return;
}
+ /* Connection-Statistik aktualisieren */
+ My_Connections[Idx].bytes_in += len;
+
/* Lesebuffer updaten */
My_Connections[Idx].rdatalen += len;
assert( My_Connections[Idx].rdatalen < READBUFFER_LEN );
My_Connections[Idx].lastping = 0;
My_Connections[Idx].lastprivmsg = time( NULL );
My_Connections[Idx].delaytime = 0;
+ My_Connections[Idx].bytes_in = 0;
+ My_Connections[Idx].bytes_out = 0;
} /* Init_Conn_Struct */