]> jfr.im git - solanum.git/blame - extensions/extb_account.c
add help for `chm_regmsg`
[solanum.git] / extensions / extb_account.c
CommitLineData
212380e3
AC
1/*
2 * Account extban type: bans all users with any/matching account
3 * -- jilles
212380e3
AC
4 */
5
6#include "stdinc.h"
7#include "modules.h"
8#include "client.h"
9#include "ircd.h"
10
eeabf33a
EM
11static const char extb_desc[] = "Account ($a) extban type";
12
212380e3
AC
13static int _modinit(void);
14static void _moddeinit(void);
15static int eb_account(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
16
c81afd15 17DECLARE_MODULE_AV2(extb_account, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, extb_desc);
212380e3
AC
18
19static int
20_modinit(void)
21{
22 extban_table['a'] = eb_account;
23
24 return 0;
25}
26
27static void
28_moddeinit(void)
29{
30 extban_table['a'] = NULL;
31}
32
33static 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}