X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Fconn-func.c;h=2f15786f7a3189d08957ce64884724be512db2cb;hb=ab1f48a34668295275b794f1cc09839acc445c2b;hp=591804b1910aafa565ade56f2a09e9b2ba47ad97;hpb=7b6e26628a884a768863c753a3fdff00116c0eed;p=ngircd-alex.git diff --git a/src/ngircd/conn-func.c b/src/ngircd/conn-func.c index 591804b1..2f15786f 100644 --- a/src/ngircd/conn-func.c +++ b/src/ngircd/conn-func.c @@ -16,19 +16,21 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conn-func.c,v 1.2 2003/11/05 23:24:48 alex Exp $"; +static char UNUSED id[] = "$Id: conn-func.c,v 1.12 2008/03/11 14:05:27 alex Exp $"; #include "imp.h" #include -#include +#include +#include "log.h" #include "conn.h" +#include "client.h" #include "exp.h" #include "conn-func.h" -GLOBAL VOID +GLOBAL void Conn_UpdateIdle( CONN_ID Idx ) { /* Idle-Timer zuruecksetzen */ @@ -38,6 +40,16 @@ Conn_UpdateIdle( CONN_ID Idx ) } +/* + * Get signon time of a connection. + */ +GLOBAL time_t +Conn_GetSignon(CONN_ID Idx) +{ + assert(Idx > NONE); + return My_Connections[Idx].signon; +} + GLOBAL time_t Conn_GetIdle( CONN_ID Idx ) { @@ -58,7 +70,7 @@ Conn_LastPing( CONN_ID Idx ) } /* Conn_LastPing */ -GLOBAL VOID +GLOBAL void Conn_SetPenalty( CONN_ID Idx, time_t Seconds ) { /* Penalty-Delay fuer eine Verbindung (in Sekunden) setzen; @@ -72,11 +84,17 @@ Conn_SetPenalty( CONN_ID Idx, time_t Seconds ) assert( Seconds >= 0 ); t = time( NULL ) + Seconds; - if( t > My_Connections[Idx].delaytime ) My_Connections[Idx].delaytime = t; + if (t > My_Connections[Idx].delaytime) + My_Connections[Idx].delaytime = t; + +#ifdef DEBUG + Log(LOG_DEBUG, "Add penalty time on connection %d: %ld second(s).", + Idx, (long)Seconds); +#endif } /* Conn_SetPenalty */ -GLOBAL VOID +GLOBAL void Conn_ResetPenalty( CONN_ID Idx ) { assert( Idx > NONE ); @@ -84,8 +102,8 @@ Conn_ResetPenalty( CONN_ID Idx ) } /* Conn_ResetPenalty */ -GLOBAL VOID -Conn_ClearFlags( VOID ) +GLOBAL void +Conn_ClearFlags( void ) { /* Alle Connection auf "nicht-markiert" setzen */ @@ -95,18 +113,18 @@ Conn_ClearFlags( VOID ) } /* Conn_ClearFlags */ -GLOBAL INT +GLOBAL int Conn_Flag( CONN_ID Idx ) { - /* Ist eine Connection markiert (TRUE) oder nicht? */ + /* Ist eine Connection markiert (true) oder nicht? */ assert( Idx > NONE ); return My_Connections[Idx].flag; } /* Conn_Flag */ -GLOBAL VOID -Conn_SetFlag( CONN_ID Idx, INT Flag ) +GLOBAL void +Conn_SetFlag( CONN_ID Idx, int Flag ) { /* Connection markieren */ @@ -116,7 +134,7 @@ Conn_SetFlag( CONN_ID Idx, INT Flag ) GLOBAL CONN_ID -Conn_First( VOID ) +Conn_First( void ) { /* Connection-Struktur der ersten Verbindung liefern; * Ist keine Verbindung vorhanden, wird NONE geliefert. */ @@ -149,32 +167,7 @@ Conn_Next( CONN_ID Idx ) } /* Conn_Next */ -GLOBAL VOID -Conn_SetOption( CONN_ID Idx, INT Option ) -{ - /* Option fuer Verbindung setzen. - * Initial sind alle Optionen _nicht_ gesetzt. */ - - assert( Idx > NONE ); - assert( Option != 0 ); - - My_Connections[Idx].options |= Option; -} /* Conn_SetOption */ - - -GLOBAL VOID -Conn_UnsetOption( CONN_ID Idx, INT Option ) -{ - /* Option fuer Verbindung loeschen */ - - assert( Idx > NONE ); - assert( Option != 0 ); - - My_Connections[Idx].options &= ~Option; -} /* Conn_UnsetOption */ - - -GLOBAL INT +GLOBAL UINT16 Conn_Options( CONN_ID Idx ) { assert( Idx > NONE ); @@ -182,31 +175,43 @@ Conn_Options( CONN_ID Idx ) } /* Conn_Options */ +/** + * Get the start time of the connection. + * The result is the start time in seconds since 1970-01-01, as reported + * by the C function time(NULL). + */ GLOBAL time_t Conn_StartTime( CONN_ID Idx ) { - /* Zeitpunkt des Link-Starts liefern (in Sekunden) */ + CLIENT *c; - assert( Idx > NONE ); - return My_Connections[Idx].starttime; -} /* Conn_Uptime */ + assert(Idx > NONE); + + /* Search client structure for this link ... */ + c = Conn_GetClient(Idx); + if(c != NULL) + return Client_StartTime(c); + + return 0; +} /* Conn_StartTime */ -GLOBAL INT +GLOBAL size_t Conn_SendQ( CONN_ID Idx ) { /* Laenge der Daten im Schreibbuffer liefern */ assert( Idx > NONE ); -#ifdef USE_ZLIB - if( My_Connections[Idx].options & CONN_ZIP ) return My_Connections[Idx].zip.wdatalen; +#ifdef ZLIB + if( My_Connections[Idx].options & CONN_ZIP ) + return array_bytes(&My_Connections[Idx].zip.wbuf); else #endif - return My_Connections[Idx].wdatalen; + return array_bytes(&My_Connections[Idx].wbuf); } /* Conn_SendQ */ -GLOBAL LONG +GLOBAL long Conn_SendMsg( CONN_ID Idx ) { /* Anzahl gesendeter Nachrichten liefern */ @@ -216,7 +221,7 @@ Conn_SendMsg( CONN_ID Idx ) } /* Conn_SendMsg */ -GLOBAL LONG +GLOBAL long Conn_SendBytes( CONN_ID Idx ) { /* Anzahl gesendeter Bytes (unkomprimiert) liefern */ @@ -226,21 +231,22 @@ Conn_SendBytes( CONN_ID Idx ) } /* Conn_SendBytes */ -GLOBAL INT +GLOBAL size_t Conn_RecvQ( CONN_ID Idx ) { /* Laenge der Daten im Lesebuffer liefern */ assert( Idx > NONE ); -#ifdef USE_ZLIB - if( My_Connections[Idx].options & CONN_ZIP ) return My_Connections[Idx].zip.rdatalen; +#ifdef ZLIB + if( My_Connections[Idx].options & CONN_ZIP ) + return array_bytes(&My_Connections[Idx].zip.rbuf); else #endif - return My_Connections[Idx].rdatalen; + return array_bytes(&My_Connections[Idx].rbuf); } /* Conn_RecvQ */ -GLOBAL LONG +GLOBAL long Conn_RecvMsg( CONN_ID Idx ) { /* Anzahl empfangener Nachrichten liefern */ @@ -250,7 +256,7 @@ Conn_RecvMsg( CONN_ID Idx ) } /* Conn_RecvMsg */ -GLOBAL LONG +GLOBAL long Conn_RecvBytes( CONN_ID Idx ) { /* Anzahl empfangener Bytes (unkomprimiert) liefern */ @@ -260,15 +266,15 @@ Conn_RecvBytes( CONN_ID Idx ) } /* Conn_RecvBytes */ -GLOBAL VOID -Conn_ResetWCounter( VOID ) +GLOBAL void +Conn_ResetWCounter( void ) { WCounter = 0; } /* Conn_ResetWCounter */ -GLOBAL LONG -Conn_WCounter( VOID ) +GLOBAL long +Conn_WCounter( void ) { return WCounter; } /* Conn_WCounter */