]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/client.h
use io_close instead of plain close in Conn_ExitListeners()
[ngircd-alex.git] / src / ngircd / client.h
index 927011bb45cc165ee1d24e0ab165d35310c63eee..5ae189d42eb9eb0353dc1beccc111d0fd74f7fc5 100644 (file)
@@ -8,7 +8,7 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * $Id: client.h,v 1.37 2005/05/16 12:24:31 alex Exp $
+ * $Id: client.h,v 1.39 2005/06/12 16:18:49 alex Exp $
  *
  * Client management (header)
  */
@@ -35,6 +35,7 @@
 
 typedef struct _CLIENT
 {
+       time_t starttime;               /* Start time of link */
        char id[CLIENT_ID_LEN];         /* nick (user) / ID (server) */
        UINT32 hash;                    /* hash of lower-case ID */
        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_NextHop 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 ));
 
@@ -150,6 +152,8 @@ GLOBAL bool Client_IsValidNick PARAMS(( char *Nick ));
 GLOBAL WHOWAS *Client_GetWhowas PARAMS(( void ));
 GLOBAL int Client_GetLastWhowasIndex PARAMS(( void ));
 
+GLOBAL void Client_RegisterWhowas PARAMS(( CLIENT *Client ));
+
 
 #endif