]> jfr.im git - irc/rqf/shadowircd.git/blame - include/bandbi.h
Add mr_flea (and Taros) to the list of Charybdis contributors.
[irc/rqf/shadowircd.git] / include / bandbi.h
CommitLineData
2c9a27c4
WP
1#ifndef INCLUDED_bandbi_h
2#define INCLUDED_bandbi_h
3
4void init_bandb(void);
5
6typedef enum
7{
8 BANDB_KLINE,
9 BANDB_DLINE,
10 BANDB_XLINE,
11 BANDB_RESV,
12 LAST_BANDB_TYPE
13} bandb_type;
14
15void bandb_add(bandb_type, struct Client *source_p, const char *mask1,
16 const char *mask2, const char *reason, const char *oper_reason, int perm);
17void bandb_del(bandb_type, const char *mask1, const char *mask2);
18void bandb_rehash_bans(void);
19#endif