Add ACCOUNTEXTBAN ISUPPORT token

To support the draft IRCv3 spec: https://github.com/ircv3/ircv3-specifications/pull/464
This commit is contained in:
Valentin Lorentz 2022-11-23 20:56:35 +01:00 committed by Stephen Bennett
parent cc95a6722e
commit 83f7888d72

View file

@ -7,6 +7,7 @@
#include "modules.h"
#include "client.h"
#include "ircd.h"
#include "supported.h"
static const char extb_desc[] = "Account ($a) extban type";
@ -20,6 +21,7 @@ static int
_modinit(void)
{
extban_table['a'] = eb_account;
add_isupport("ACCOUNTEXTBAN", isupport_string, "a");
return 0;
}
@ -28,6 +30,7 @@ static void
_moddeinit(void)
{
extban_table['a'] = NULL;
delete_isupport("ACCOUNTEXTBAN");
}
static int eb_account(const char *data, struct Client *client_p,