]> jfr.im git - irc/rqf/shadowircd.git/blob - extensions/extb_account.c
Disallow mIRC italics in channel names when disable_fake_channels
[irc/rqf/shadowircd.git] / extensions / extb_account.c
1 /*
2 * Account extban type: bans all users with any/matching account
3 * -- jilles
4 *
5 */
6
7 #include "stdinc.h"
8 #include "modules.h"
9 #include "client.h"
10 #include "ircd.h"
11
12 static int _modinit(void);
13 static void _moddeinit(void);
14 static int eb_account(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
15
16 DECLARE_MODULE_AV1(extb_account, _modinit, _moddeinit, NULL, NULL, NULL, "$Revision: 1299 $");
17
18 static int
19 _modinit(void)
20 {
21 extban_table['a'] = eb_account;
22
23 return 0;
24 }
25
26 static void
27 _moddeinit(void)
28 {
29 extban_table['a'] = NULL;
30 }
31
32 static int eb_account(const char *data, struct Client *client_p,
33 struct Channel *chptr, long mode_type)
34 {
35
36 (void)chptr;
37 /* $a alone matches any logged in user */
38 if (data == NULL)
39 return EmptyString(client_p->user->suser) ? EXTBAN_NOMATCH : EXTBAN_MATCH;
40 /* $a:MASK matches users logged in under matching account */
41 return match(data, client_p->user->suser) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
42 }