]> jfr.im git - solanum.git/blame - extensions/extb_server.c
librb: it's pretty obvious this has been updated since 2008.
[solanum.git] / extensions / extb_server.c
CommitLineData
212380e3
AC
1/*
2 * Server name extban type: bans all users using a certain server
3 * -- jilles
212380e3
AC
4 */
5
6#include "stdinc.h"
7#include "modules.h"
8#include "client.h"
9#include "ircd.h"
10
11static int _modinit(void);
12static void _moddeinit(void);
13static int eb_server(const char *data, struct Client *client_p, struct Channel *chptr, long mode_type);
14
04f832b7 15DECLARE_MODULE_AV2(extb_server, _modinit, _moddeinit, NULL, NULL, NULL, NULL, NULL, NULL);
212380e3
AC
16
17static int
18_modinit(void)
19{
20 extban_table['s'] = eb_server;
21
22 return 0;
23}
24
25static void
26_moddeinit(void)
27{
28 extban_table['s'] = NULL;
29}
30
31static int eb_server(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, me.name) ? EXTBAN_MATCH : EXTBAN_NOMATCH;
42}