summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-04-15 09:09:09 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-04-15 09:09:09 +0000
commit9acb4d06a759c067c846b8fd29f825556667dbf9 (patch)
treef3e5c0fa2568c5c549ece8a30d2df562c9276bd1 /include
parent186e3840dc0e313bf4bd2f91555a2dc5b7649ef6 (diff)
- Minor cleanups to hash.c; removed now unused functions, style cleanups
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1826 82007160-df01-0410-b94d-b575c5fd34c7
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);