]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/client.c
send RFC compliant netsplit messages.
[ngircd-alex.git] / src / ngircd / client.c
index 8c2afa67725ab4595ea4dbc504f1396b79ebbe62..faf95a6112a0d25ac8cbe8c152aa7514f97bfcad 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.79 2005/04/27 07:46:50 alex Exp $";
+static char UNUSED id[] = "$Id: client.c,v 1.82 2005/06/04 12:32:09 fw Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -53,6 +53,9 @@ static char UNUSED id[] = "$Id: client.c,v 1.79 2005/04/27 07:46:50 alex 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 ));
@@ -98,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 */
 
 
@@ -209,7 +214,11 @@ Client_Destroy( CLIENT *Client, char *LogMsg, char *FwdMsg, bool SendQuit )
        if( ! txt ) txt = "Reason unknown.";
 
        /* Netz-Split-Nachricht vorbereiten (noch nicht optimal) */
-       if( Client->type == CLIENT_SERVER ) snprintf( msg, sizeof( msg ), "%s: lost server %s", This_Server->id, Client->id );
+       if( Client->type == CLIENT_SERVER ) {
+               strlcpy(msg, This_Server->id, sizeof (msg));
+               strlcat(msg, " ", sizeof (msg));
+               strlcat(msg, Client->id, sizeof (msg));
+       }
 
        last = NULL;
        c = My_Clients;
@@ -258,7 +267,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 )
                        {
@@ -988,6 +1002,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 )
 {
@@ -1093,4 +1126,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- */