mirror of
https://github.com/osmarks/ngircd.git
synced 2025-04-28 13:43:11 +00:00
New function Client_StartTime().
This commit is contained in:
parent
9fa9c1fdda
commit
a4660f40db
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: client.c,v 1.82 2005/06/04 12:32:09 fw Exp $";
|
static char UNUSED id[] = "$Id: client.c,v 1.83 2005/06/12 16:18:49 alex Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -172,6 +172,7 @@ Client_New( CONN_ID Idx, CLIENT *Introducer, CLIENT *TopServer, int Type, char *
|
|||||||
if( ! client ) return NULL;
|
if( ! client ) return NULL;
|
||||||
|
|
||||||
/* Initialisieren */
|
/* Initialisieren */
|
||||||
|
client->starttime = time(NULL);
|
||||||
client->conn_id = Idx;
|
client->conn_id = Idx;
|
||||||
client->introducer = Introducer;
|
client->introducer = Introducer;
|
||||||
client->topserver = TopServer;
|
client->topserver = TopServer;
|
||||||
@ -1021,6 +1022,19 @@ Client_GetLastWhowasIndex( void )
|
|||||||
} /* Client_GetLastWhowasIndex */
|
} /* Client_GetLastWhowasIndex */
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the start time of this client.
|
||||||
|
* The result is the start time in seconds since 1970-01-01, as reported
|
||||||
|
* by the C function time(NULL).
|
||||||
|
*/
|
||||||
|
GLOBAL time_t
|
||||||
|
Client_StartTime(CLIENT *Client)
|
||||||
|
{
|
||||||
|
assert( Client != NULL );
|
||||||
|
return Client->starttime;
|
||||||
|
} /* Client_Uptime */
|
||||||
|
|
||||||
|
|
||||||
LOCAL long
|
LOCAL long
|
||||||
Count( CLIENT_TYPE Type )
|
Count( CLIENT_TYPE Type )
|
||||||
{
|
{
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
* Please read the file COPYING, README and AUTHORS for more information.
|
* Please read the file COPYING, README and AUTHORS for more information.
|
||||||
*
|
*
|
||||||
* $Id: client.h,v 1.38 2005/05/17 23:18:54 alex Exp $
|
* $Id: client.h,v 1.39 2005/06/12 16:18:49 alex Exp $
|
||||||
*
|
*
|
||||||
* Client management (header)
|
* Client management (header)
|
||||||
*/
|
*/
|
||||||
@ -35,6 +35,7 @@
|
|||||||
|
|
||||||
typedef struct _CLIENT
|
typedef struct _CLIENT
|
||||||
{
|
{
|
||||||
|
time_t starttime; /* Start time of link */
|
||||||
char id[CLIENT_ID_LEN]; /* nick (user) / ID (server) */
|
char id[CLIENT_ID_LEN]; /* nick (user) / ID (server) */
|
||||||
UINT32 hash; /* hash of lower-case ID */
|
UINT32 hash; /* hash of lower-case ID */
|
||||||
POINTER *next; /* pointer to next client structure */
|
POINTER *next; /* pointer to next client structure */
|
||||||
@ -111,6 +112,7 @@ GLOBAL int Client_MyToken PARAMS(( CLIENT *Client ));
|
|||||||
GLOBAL CLIENT *Client_TopServer PARAMS(( CLIENT *Client ));
|
GLOBAL CLIENT *Client_TopServer PARAMS(( CLIENT *Client ));
|
||||||
GLOBAL CLIENT *Client_NextHop PARAMS(( CLIENT *Client ));
|
GLOBAL CLIENT *Client_NextHop PARAMS(( CLIENT *Client ));
|
||||||
GLOBAL char *Client_Away PARAMS(( CLIENT *Client ));
|
GLOBAL char *Client_Away PARAMS(( CLIENT *Client ));
|
||||||
|
GLOBAL time_t Client_StartTime PARAMS(( CLIENT *Client ));
|
||||||
|
|
||||||
GLOBAL bool Client_HasMode PARAMS(( CLIENT *Client, char Mode ));
|
GLOBAL bool Client_HasMode PARAMS(( CLIENT *Client, char Mode ));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user