68 lines
2.0 KiB
C
68 lines
2.0 KiB
C
/*
|
|
* hash2.h: function header file for hash.c
|
|
*
|
|
* Written by Scott H Kilau
|
|
*
|
|
* CopyRight(c) 1997
|
|
*
|
|
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
|
|
*
|
|
* @(#)$Id: hash2.h 52 2008-06-14 06:45:05Z keaston $
|
|
*/
|
|
|
|
#ifndef _HASH2_H_
|
|
#define _HASH2_H_
|
|
|
|
#include "struct.h"
|
|
#include "whowas.h"
|
|
#include "hash.h"
|
|
|
|
/* Generic List type hash list */
|
|
void BX_add_name_to_genericlist (char *, HashEntry *, unsigned int);
|
|
List *BX_find_name_in_genericlist (char *, HashEntry *, unsigned int, int);
|
|
List *BX_next_namelist(HashEntry *, List *, unsigned int);
|
|
|
|
void BX_add_nicklist_to_channellist(NickList *, ChannelList *);
|
|
|
|
void BX_add_whowas_userhost_channel (WhowasList *, WhowasWrapList *);
|
|
|
|
WhowasList *BX_find_userhost_channel (char *, char *, int, WhowasWrapList *);
|
|
|
|
int BX_remove_oldest_whowas_hashlist (WhowasWrapList *, time_t, int);
|
|
|
|
WhowasList *BX_next_userhost(WhowasWrapList *, WhowasList *);
|
|
|
|
NickList *BX_find_nicklist_in_channellist(char *, ChannelList *, int);
|
|
NickList *BX_next_nicklist(ChannelList *, NickList *);
|
|
|
|
void clear_nicklist_hashtable(ChannelList *);
|
|
void show_nicklist_hashtable(ChannelList *);
|
|
|
|
void show_whowas_hashtable(WhowasWrapList *cptr, char *);
|
|
int show_wholeft_hashtable(WhowasWrapList *cptr, time_t ltime, int *total, int *hook, char *);
|
|
|
|
/* Determines if the Nick matches the nick!user@host mask given. */
|
|
int nick_match(NickList *nick, char *mask);
|
|
|
|
/* Added to sort a hash'd nicklist and them remove the sorted list */
|
|
NickList *BX_sorted_nicklist(ChannelList *, int);
|
|
void BX_clear_sorted_nicklist(NickList **);
|
|
|
|
/* Warning: These numeric values can be taken directly from scripts via
|
|
* the $channel() function - so BEWARE if you change them! */
|
|
#define NICKSORT_NORMAL 0
|
|
#define NICKSORT_NONE 1
|
|
#define NICKSORT_NICK 2
|
|
#define NICKSORT_HOST 3
|
|
#define NICKSORT_TIME 4
|
|
#define NICKSORT_IP 5
|
|
#define NICKSORT_STAT 6
|
|
|
|
Flooding *BX_find_name_in_floodlist(char *, char *, HashEntry *, unsigned int, int);
|
|
Flooding *BX_add_name_to_floodlist(char *, char *, char *, HashEntry *, unsigned int);
|
|
|
|
unsigned long hash_nickname(char *, unsigned int);
|
|
|
|
|
|
#endif
|