mirror of
https://github.com/osmarks/ngircd.git
synced 2025-07-03 18:32:50 +00:00
Only register clients that have been connected at least 30 sec. in WHOIS database.
This commit is contained in:
parent
8b0ac2306e
commit
5c20474fdb
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: client.c,v 1.83 2005/06/12 16:18:49 alex Exp $";
|
static char UNUSED id[] = "$Id: client.c,v 1.84 2005/06/12 16:39:42 alex Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -1142,6 +1142,9 @@ Adjust_Counters( CLIENT *Client )
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Register client in My_Whowas structure for further recall by WHOWAS.
|
* Register client in My_Whowas structure for further recall by WHOWAS.
|
||||||
|
* Note: Only clients that have been connected at least 30 seconds will be
|
||||||
|
* registered to prevent automated IRC bots to "destroy" a nice server
|
||||||
|
* history database.
|
||||||
*/
|
*/
|
||||||
GLOBAL void
|
GLOBAL void
|
||||||
Client_RegisterWhowas( CLIENT *Client )
|
Client_RegisterWhowas( CLIENT *Client )
|
||||||
@ -1150,6 +1153,10 @@ Client_RegisterWhowas( CLIENT *Client )
|
|||||||
|
|
||||||
assert( Client != NULL );
|
assert( Client != NULL );
|
||||||
|
|
||||||
|
/* Don't register clients that were connected less than 30 seconds. */
|
||||||
|
if( time(NULL) - Client->starttime < 30 )
|
||||||
|
return;
|
||||||
|
|
||||||
slot = Last_Whowas + 1;
|
slot = Last_Whowas + 1;
|
||||||
if( slot >= MAX_WHOWAS || slot < 0 ) slot = 0;
|
if( slot >= MAX_WHOWAS || slot < 0 ) slot = 0;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user