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