X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/f42e9cebeea0101a5193ca6ac0c5a7689d49f95b..91e46e62e5f9faf6735e0c41ce21113939cacb85:/src/hash.c diff --git a/src/hash.c b/src/hash.c index 95efc55..9ff4b12 100644 --- a/src/hash.c +++ b/src/hash.c @@ -45,9 +45,7 @@ dlink_list *clientTable; dlink_list *channelTable; dlink_list *idTable; dlink_list *resvTable; -dlink_list *hostTable; -dlink_list *helpTable; -dlink_list *ndTable; +dlink_list *hostTable; /* * look in whowas.c for the missing ...[WW_MAX]; entry @@ -95,11 +93,9 @@ init_hash(void) { clientTable = MyMalloc(sizeof(dlink_list) * U_MAX); idTable = MyMalloc(sizeof(dlink_list) * U_MAX); - ndTable = MyMalloc(sizeof(dlink_list) * U_MAX); channelTable = MyMalloc(sizeof(dlink_list) * CH_MAX); hostTable = MyMalloc(sizeof(dlink_list) * HOST_MAX); resvTable = MyMalloc(sizeof(dlink_list) * R_MAX); - helpTable = MyMalloc(sizeof(dlink_list) * HELP_MAX); } #ifndef RICER_HASHING @@ -113,7 +109,8 @@ fnv_hash_upper(const unsigned char *s, int bits) h ^= ToUpper(*s++); h += (h<<1) + (h<<4) + (h<<7) + (h << 8) + (h << 24); } - h = (h >> bits) ^ (h & ((2^bits)-1)); + if (bits < 32) + h = ((h >> bits) ^ h) & ((1<> bits) ^ (h & ((2^bits)-1)); + if (bits < 32) + h = ((h >> bits) ^ h) & ((1<> bits) ^ (h & ((2^bits)-1)); + if (bits < 32) + h = ((h >> bits) ^ h) & ((1<> bits) ^ (h & ((2^bits)-1)); + if (bits < 32) + h = ((h >> bits) ^ h) & ((1<hashv = hash_nick(name); - dlinkAdd(nd, &nd->hnode, &ndTable[nd->hashv]); -} - /* del_from_id_hash() * * removes an id from the id hash table @@ -405,21 +373,6 @@ del_from_resv_hash(const char *name, struct ConfItem *aconf) dlinkFindDestroy(aconf, &resvTable[hashv]); } -void -clear_help_hash(void) -{ - dlink_node *ptr; - dlink_node *next_ptr; - int i; - - HASH_WALK_SAFE(i, HELP_MAX, ptr, next_ptr, helpTable) - { - free_cachefile(ptr->data); - dlinkDestroy(ptr, &helpTable[i]); - } - HASH_WALK_END -} - /* find_id() * * finds a client entry from the id hash table @@ -687,30 +640,6 @@ hash_find_resv(const char *name) return NULL; } -struct cachefile * -hash_find_help(const char *name, int flags) -{ - struct cachefile *hptr; - dlink_node *ptr; - unsigned int hashv; - - if(EmptyString(name)) - return NULL; - - hashv = hash_help(name); - - DLINK_FOREACH(ptr, helpTable[hashv].head) - { - hptr = ptr->data; - - if((irccmp(name, hptr->name) == 0) && - (hptr->flags & flags)) - return hptr; - } - - return NULL; -} - void clear_resv_hash(void) { @@ -733,29 +662,6 @@ clear_resv_hash(void) HASH_WALK_END } -struct nd_entry * -hash_find_nd(const char *name) -{ - struct nd_entry *nd; - dlink_node *ptr; - unsigned int hashv; - - if(EmptyString(name)) - return NULL; - - hashv = hash_nick(name); - - DLINK_FOREACH(ptr, ndTable[hashv].head) - { - nd = ptr->data; - - if(!irccmp(name, nd->name)) - return nd; - } - - return NULL; -} - static void output_hash(struct Client *source_p, const char *name, int length, int *counts, int deepest) {