mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 04:18:55 +01:00
61b517ca3c
* To benefit from the precompiled-header (PCH) it MUST provide "the first C token." Advantages: Never worry about the include stack again. Remember, this means one less thing for random module developers, community people learning C++, and new developers to deal with. It should reduce the learning curve and barrier for participation. Disadvantages: Makes overall compilation a bit slower, especially without any additional work to improve it again. There are several opportunities, places where the PCH is probably being ignored, etc that can be addressed.
58 lines
1.8 KiB
C++
58 lines
1.8 KiB
C++
/*
|
|
* Shows notices if remote clients exit with "Bad user info" or
|
|
* ConfigFileEntry.kline_reason.
|
|
* Assumes client_exit is enabled so users can't fake these reasons,
|
|
* and kline_reason is enabled and the same everywhere.
|
|
* Yes, this is a hack, but it is simple and avoids sending
|
|
* more data across servers -- jilles
|
|
*/
|
|
|
|
using namespace ircd;
|
|
|
|
static const char sno_desc[] =
|
|
"Adds server notices for global XLINEs, KLINEs, and DLINEs";
|
|
|
|
static void h_gla_client_exit(hook_data_client_exit *);
|
|
|
|
mapi_hfn_list_av1 gla_hfnlist[] = {
|
|
{ "client_exit", (hookfn) h_gla_client_exit },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
DECLARE_MODULE_AV2(globallineactive, NULL, NULL, NULL, NULL, gla_hfnlist, NULL, NULL, sno_desc);
|
|
|
|
static void
|
|
h_gla_client_exit(hook_data_client_exit *hdata)
|
|
{
|
|
struct Client *source_p;
|
|
|
|
source_p = hdata->target;
|
|
|
|
if (MyConnect(source_p) || !IsClient(source_p))
|
|
return;
|
|
if (!strcmp(hdata->comment, "Bad user info"))
|
|
{
|
|
sendto_realops_snomask_from(SNO_GENERAL, L_ALL, source_p->servptr,
|
|
"XLINE active for %s[%s@%s]",
|
|
source_p->name, source_p->username, source_p->host);
|
|
}
|
|
else if (ConfigFileEntry.kline_reason != NULL &&
|
|
!strcmp(hdata->comment, ConfigFileEntry.kline_reason))
|
|
{
|
|
sendto_realops_snomask_from(SNO_GENERAL, L_ALL, source_p->servptr,
|
|
"K/DLINE active for %s[%s@%s]",
|
|
source_p->name, source_p->username, source_p->host);
|
|
}
|
|
else if (!strncmp(hdata->comment, "Temporary K-line ", 17))
|
|
{
|
|
sendto_realops_snomask_from(SNO_GENERAL, L_ALL, source_p->servptr,
|
|
"K/DLINE active for %s[%s@%s]",
|
|
source_p->name, source_p->username, source_p->host);
|
|
}
|
|
else if (!strncmp(hdata->comment, "Temporary D-line ", 17))
|
|
{
|
|
sendto_realops_snomask_from(SNO_GENERAL, L_ALL, source_p->servptr,
|
|
"K/DLINE active for %s[%s@%s]",
|
|
source_p->name, source_p->username, source_p->host);
|
|
}
|
|
}
|