commit - c69b208bd4d70771adad3fe176c8c03b859fcfee
commit + d0304b19a2aaab32df628637d6961a447078bbe3
blob - 420fc32e3d4859a19eb3ba9d7d093aaec8f80bc5
blob + dee2ada5de29ad8834d7309e88c3e7aef1dafc48
--- src/ngircd/client.c
+++ src/ngircd/client.c
#include "portab.h"
-static char UNUSED id[] = "$Id: client.c,v 1.66 2002/12/19 04:33:27 alex Exp $";
+static char UNUSED id[] = "$Id: client.c,v 1.67 2002/12/22 23:29:09 alex Exp $";
#include "imp.h"
#include <assert.h>
LOCAL CLIENT *New_Client_Struct PARAMS(( VOID ));
LOCAL VOID Generate_MyToken PARAMS(( CLIENT *Client ));
+LOCAL VOID Adjust_Counters PARAMS(( CLIENT *Client ));
+LONG Max_Users = 0, My_Max_Users = 0;
+
+
GLOBAL VOID
Client_Init( VOID )
{
client->next = (POINTER *)My_Clients;
My_Clients = client;
+ /* Adjust counters */
+ Adjust_Counters( client );
+
return client;
} /* Client_New */
assert( Client != NULL );
Client->type = Type;
if( Type == CLIENT_SERVER ) Generate_MyToken( Client );
+ Adjust_Counters( Client );
} /* Client_SetType */
}
return cnt;
} /* Client_UnknownCount */
+
+
+GLOBAL LONG
+Client_MaxUserCount( VOID )
+{
+ return Max_Users;
+} /* Client_MaxUserCount */
+
+
+GLOBAL LONG
+Client_MyMaxUserCount( VOID )
+{
+ return My_Max_Users;
+} /* Client_MyMaxUserCount */
GLOBAL BOOLEAN
} /* Generate_MyToken */
+LOCAL VOID
+Adjust_Counters( CLIENT *Client )
+{
+ LONG count;
+
+ assert( Client != NULL );
+
+ if( Client->type != CLIENT_USER ) return;
+
+ if( Client->conn_id != NONE )
+ {
+ /* Local connection */
+ count = Client_MyUserCount( );
+ if( count > My_Max_Users ) My_Max_Users = count;
+ }
+ count = Client_UserCount( );
+ if( count > Max_Users ) Max_Users = count;
+} /* Adjust_Counters */
+
+
/* -eof- */
blob - edee38e4291dc6f1ff39641bcf1b3102b8fc1378
blob + dc2c9924ffb9b0c2f4317ecfc1f8728e1b168886
--- src/ngircd/client.h
+++ src/ngircd/client.h
* (at your option) any later version.
* Please read the file COPYING, README and AUTHORS for more information.
*
- * $Id: client.h,v 1.32 2002/12/12 12:23:43 alex Exp $
+ * $Id: client.h,v 1.33 2002/12/22 23:29:09 alex Exp $
*
* Client management (header)
*/
GLOBAL LONG Client_MyUserCount PARAMS((VOID ));
GLOBAL LONG Client_MyServiceCount PARAMS((VOID ));
GLOBAL LONG Client_MyServerCount PARAMS((VOID ));
+GLOBAL LONG Client_MaxUserCount PARAMS(( VOID ));
+GLOBAL LONG Client_MyMaxUserCount PARAMS(( VOID ));
GLOBAL BOOLEAN Client_IsValidNick PARAMS((CHAR *Nick ));