]> jfr.im git - solanum.git/blob - extensions/extb_realname.c
librb: it's pretty obvious this has been updated since 2008.
[solanum.git] / extensions / extb_realname.c
1 /*
2 * Realname extban type: bans all users with matching gecos
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_realname(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
14
15 DECLARE_MODULE_AV2(extb_realname, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, NULL);
16
17 static int
18 _modinit(void)
19 {
20 extban_table['r'] = eb_realname;
21
22 return 0;
23 }
24
25 static void
26 _moddeinit(void)
27 {
28 extban_table['r'] = NULL;
29 }
30
31 static int eb_realname(const char *data, struct Client *client_p,
32 struct Channel *chptr, long mode_type)
33 {
34
35 (void)chptr;
36 /* This type is not safe for exceptions */
37 if (mode_type == CHFL_EXCEPTION || mode_type == CHFL_INVEX)
38 return EXTBAN_INVALID;
39 if (data == NULL)
40 return EXTBAN_INVALID;
41 return match(data, client_p->info) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
42 }