summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/hash.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/hash.h b/include/hash.h
index bb4bb06..9398bbc 100644
--- a/include/hash.h
+++ b/include/hash.h
@@ -32,7 +32,6 @@
struct Client;
struct Channel;
-struct MaskItem;
struct UserHost;
enum
@@ -40,8 +39,7 @@ enum
HASH_TYPE_ID,
HASH_TYPE_CLIENT,
HASH_TYPE_CHANNEL,
- HASH_TYPE_USERHOST,
- HASH_TYPE_RESERVED
+ HASH_TYPE_USERHOST
};
extern void hash_init(void);
@@ -49,8 +47,6 @@ extern void hash_add_client(struct Client *);
extern void hash_del_client(struct Client *);
extern void hash_add_channel(struct Channel *);
extern void hash_del_channel(struct Channel *);
-extern void hash_add_resv(struct MaskItem *);
-extern void hash_del_resv(struct MaskItem *);
extern void hash_add_id(struct Client *);
extern void hash_del_id(struct Client *);
extern void hash_add_userhost(struct UserHost *);
@@ -62,7 +58,6 @@ extern struct Client *hash_find_client(const char *);
extern struct Client *hash_find_server(const char *);
extern struct Channel *hash_find_channel(const char *);
extern void *hash_get_bucket(int, unsigned int);
-extern struct MaskItem *hash_find_resv(const char *);
extern void free_list_task(struct ListTask *, struct Client *);
extern void safe_list_channels(struct Client *, struct ListTask *, int);