]> arthur.barton.de Git - ngircd.git/blobdiff - src/ngircd/client.c
New function Client_RegisterWhowas().
[ngircd.git] / src / ngircd / client.c
index 52b71d285f2e9da530725904534d46b0fcbded74..7cb81a7825dd5fd4909f047e86f6914b05ae1920 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
+ * Copyright (c)2001-2005 by Alexander Barton (alex@barton.de)
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -17,7 +17,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: client.c,v 1.78 2005/03/19 18:43:48 fw Exp $";
+static char UNUSED id[] = "$Id: client.c,v 1.81 2005/05/17 23:18:54 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -28,6 +28,7 @@ static char UNUSED id[] = "$Id: client.c,v 1.78 2005/03/19 18:43:48 fw Exp $";
 #include <strings.h>
 #include <netdb.h>
 
+#include "defines.h"
 #include "conn.h"
 
 #include "exp.h"
@@ -52,6 +53,9 @@ static char UNUSED id[] = "$Id: client.c,v 1.78 2005/03/19 18:43:48 fw Exp $";
 LOCAL CLIENT *This_Server, *My_Clients;
 LOCAL char GetID_Buffer[GETID_LEN];
 
+LOCAL WHOWAS My_Whowas[MAX_WHOWAS];
+LOCAL int Last_Whowas = -1;
+
 
 LOCAL long Count PARAMS(( CLIENT_TYPE Type ));
 LOCAL long MyCount PARAMS(( CLIENT_TYPE Type ));
@@ -97,6 +101,8 @@ Client_Init( void )
        Client_SetInfo( This_Server, Conf_ServerInfo );
 
        My_Clients = This_Server;
+       
+       memset( &My_Whowas, 0, sizeof( My_Whowas ));
 } /* Client_Init */
 
 
@@ -257,7 +263,12 @@ Client_Destroy( CLIENT *Client, char *LogMsg, char *FwdMsg, bool SendQuit )
                                                else IRC_WriteStrServersPrefix( Client_NextHop( c ), c, "QUIT :" );
                                        }
                                }
+
+                               /* Unregister client from channels */
                                Channel_Quit( c, FwdMsg ? FwdMsg : c->id );
+                               
+                               /* Register client in My_Whowas structure */
+                               Client_RegisterWhowas( c );
                        }
                        else if( c->type == CLIENT_SERVER )
                        {
@@ -987,6 +998,25 @@ Client_IsValidNick( char *Nick )
 } /* Client_IsValidNick */
 
 
+/**
+ * Return pointer to "My_Whowas" structure.
+ */
+GLOBAL WHOWAS *
+Client_GetWhowas( void )
+{
+       return My_Whowas;
+} /* Client_GetWhowas */
+
+/**
+ * Return the index of the last used WHOWAS entry.
+ */
+GLOBAL int
+Client_GetLastWhowasIndex( void )
+{
+       return Last_Whowas;
+} /* Client_GetLastWhowasIndex */
+
+
 LOCAL long
 Count( CLIENT_TYPE Type )
 {
@@ -1092,4 +1122,37 @@ Adjust_Counters( CLIENT *Client )
 } /* Adjust_Counters */
 
 
+/**
+ * Register client in My_Whowas structure for further recall by WHOWAS.
+ */
+GLOBAL void
+Client_RegisterWhowas( CLIENT *Client )
+{
+       int slot;
+       
+       assert( Client != NULL );
+
+       slot = Last_Whowas + 1;
+       if( slot >= MAX_WHOWAS || slot < 0 ) slot = 0;
+
+#ifdef DEBUG
+       Log( LOG_DEBUG, "Saving WHOWAS information to slot %d ...", slot );
+#endif
+       
+       My_Whowas[slot].time = time( NULL );
+       strlcpy( My_Whowas[slot].id, Client_ID( Client ),
+                sizeof( My_Whowas[slot].id ));
+       strlcpy( My_Whowas[slot].user, Client_User( Client ),
+                sizeof( My_Whowas[slot].user ));
+       strlcpy( My_Whowas[slot].host, Client_Hostname( Client ),
+                sizeof( My_Whowas[slot].host ));
+       strlcpy( My_Whowas[slot].info, Client_Info( Client ),
+                sizeof( My_Whowas[slot].info ));
+       strlcpy( My_Whowas[slot].server, Client_ID( Client_Introducer( Client )),
+                sizeof( My_Whowas[slot].server ));
+       
+       Last_Whowas = slot;
+} /* Client_RegisterWhowas */
+
+
 /* -eof- */