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