]> jfr.im git - irc/rqf/shadowircd.git/blame - include/hash.h
start making this compile
[irc/rqf/shadowircd.git] / include / hash.h
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * hash.h: A header for the ircd hashtable code.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
f42e9ceb 24 * $Id: hash.h 3177 2007-02-01 00:19:14Z jilles $
212380e3 25 */
26
27#ifndef INCLUDED_hash_h
28#define INCLUDED_hash_h
29
30#include "tools.h"
31
b37021a4
WP
32struct Dictionary;
33
08d11e34
WP
34extern rb_dlink_list *clientTable;
35extern rb_dlink_list *channelTable;
36extern rb_dlink_list *idTable;
37extern rb_dlink_list *resvTable;
38extern rb_dlink_list *hostTable;
39extern rb_dlink_list *helpTable;
b37021a4
WP
40
41extern struct Dictionary *nd_dict;
212380e3 42
43/* Magic value for FNV hash functions */
44#define FNV1_32_INIT 0x811c9dc5UL
45
46/* Client hash table size, used in hash.c/s_debug.c */
1cda7a9c 47#define U_MAX_BITS 17
212380e3 48#define U_MAX 131072 /* 2^17 */
49
50/* Channel hash table size, hash.c/s_debug.c */
1cda7a9c 51#define CH_MAX_BITS 16
212380e3 52#define CH_MAX 65536 /* 2^16 */
53
54/* hostname hash table size */
1cda7a9c 55#define HOST_MAX_BITS 17
212380e3 56#define HOST_MAX 131072 /* 2^17 */
57
58/* RESV/XLINE hash table size, used in hash.c */
1cda7a9c 59#define R_MAX_BITS 10
212380e3 60#define R_MAX 1024 /* 2^10 */
61
62
08d11e34
WP
63#define HASH_WALK(i, max, ptr, table) for (i = 0; i < max; i++) { RB_DLINK_FOREACH(ptr, table[i].head)
64#define HASH_WALK_SAFE(i, max, ptr, nptr, table) for (i = 0; i < max; i++) { RB_DLINK_FOREACH_SAFE(ptr, nptr, table[i].head)
212380e3 65#define HASH_WALK_END }
66
67struct Client;
68struct Channel;
69struct ConfItem;
70struct cachefile;
71struct nd_entry;
72
73extern u_int32_t fnv_hash_upper(const unsigned char *s, int bits);
74extern u_int32_t fnv_hash(const unsigned char *s, int bits);
75extern u_int32_t fnv_hash_len(const unsigned char *s, int bits, int len);
76extern u_int32_t fnv_hash_upper_len(const unsigned char *s, int bits, int len);
77
78extern void init_hash(void);
79
80extern void add_to_client_hash(const char *name, struct Client *client);
81extern void del_from_client_hash(const char *name, struct Client *client);
212380e3 82extern struct Client *find_client(const char *name);
83extern struct Client *find_named_client(const char *name);
84extern struct Client *find_server(struct Client *source_p, const char *name);
85
86extern void add_to_id_hash(const char *, struct Client *);
87extern void del_from_id_hash(const char *name, struct Client *client);
88extern struct Client *find_id(const char *name);
89
90extern struct Channel *get_or_create_channel(struct Client *client_p, const char *chname, int *isnew);
91extern void del_from_channel_hash(const char *name, struct Channel *chan);
92extern struct Channel *find_channel(const char *name);
93
94extern void add_to_hostname_hash(const char *, struct Client *);
95extern void del_from_hostname_hash(const char *, struct Client *);
08d11e34 96extern rb_dlink_node *find_hostname(const char *);
212380e3 97
98extern void add_to_resv_hash(const char *name, struct ConfItem *aconf);
99extern void del_from_resv_hash(const char *name, struct ConfItem *aconf);
100extern struct ConfItem *hash_find_resv(const char *name);
101extern void clear_resv_hash(void);
102
212380e3 103extern void hash_stats(struct Client *);
104
105#endif /* INCLUDED_hash_h */