diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-09 20:11:58 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-09 20:11:58 +0000 |
commit | d38dcbfe747f7cf48a024187038aef3afe662aeb (patch) | |
tree | a518e210050c9d3530a93707667248cf17c73bfa /include | |
parent | 31f925f50413118a16a16632d7d86cfed1783602 (diff) |
- Finish stabilizing/cleanup of conf parser
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1647 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r-- | include/conf.h | 2 | ||||
-rw-r--r-- | include/conf_class.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/conf.h b/include/conf.h index 9c7f637..bde3956 100644 --- a/include/conf.h +++ b/include/conf.h @@ -362,7 +362,7 @@ extern void report_confitem_types(struct Client *, enum maskitem_type); extern void yyerror(const char *); extern void cleanup_tklines(void *); extern int rehash(int); -extern int conf_add_server(struct MaskItem *, const char *); +extern void lookup_confhost(struct MaskItem *); extern void conf_add_class_to_conf(struct MaskItem *, const char *); extern const char *get_oper_name(const struct Client *); diff --git a/include/conf_class.h b/include/conf_class.h index 9a72b64..883b7b0 100644 --- a/include/conf_class.h +++ b/include/conf_class.h @@ -65,7 +65,7 @@ extern struct ClassItem *class_find(const char *, int); extern void class_mark_for_deletion(void); extern void class_delete_marked(void); extern void destroy_cidr_class(struct ClassItem *); -extern void rebuild_cidr_class(struct ClassItem *, struct ClassItem *); extern int cidr_limit_reached(int, struct irc_ssaddr *, struct ClassItem *); extern void remove_from_cidr_check(struct irc_ssaddr *, struct ClassItem *); +extern void rebuild_cidr_list(struct ClassItem *); #endif |