mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +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.
75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
/*
|
|
* Remote client connect/exit notices on snomask +F (far).
|
|
* To avoid flooding, connects/exits part of netjoins/netsplits are not shown.
|
|
* Consequently, it is not possible to use these notices to keep track
|
|
* of all clients.
|
|
* -- jilles
|
|
*/
|
|
|
|
using namespace ircd;
|
|
|
|
static const char sno_desc[] =
|
|
"Adds server notice mask +F that allows operators to receive notices for connections on other servers";
|
|
|
|
static int _modinit(void);
|
|
static void _moddeinit(void);
|
|
static void h_gcn_new_remote_user(struct Client *);
|
|
static void h_gcn_client_exit(hook_data_client_exit *);
|
|
|
|
mapi_hfn_list_av1 gcn_hfnlist[] = {
|
|
{ "new_remote_user", (hookfn) h_gcn_new_remote_user },
|
|
{ "client_exit", (hookfn) h_gcn_client_exit },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
DECLARE_MODULE_AV2(globalconnexit, _modinit, _moddeinit, NULL, NULL, gcn_hfnlist, NULL, NULL, sno_desc);
|
|
|
|
static int
|
|
_modinit(void)
|
|
{
|
|
/* add the snomask to the available slot */
|
|
snomask_modes['F'] = find_snomask_slot();
|
|
|
|
/* show the fact that we are showing user information in /version */
|
|
opers_see_all_users = true;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
_moddeinit(void)
|
|
{
|
|
/* disable the snomask and remove it from the available list */
|
|
snomask_modes['F'] = 0;
|
|
}
|
|
|
|
static void
|
|
h_gcn_new_remote_user(struct Client *source_p)
|
|
{
|
|
|
|
if (!HasSentEob(source_p->servptr))
|
|
return;
|
|
sendto_realops_snomask_from(snomask_modes['F'], L_ALL, source_p->servptr,
|
|
"Client connecting: %s (%s@%s) [%s] {%s} [%s]",
|
|
source_p->name, source_p->username, source_p->orighost,
|
|
show_ip(NULL, source_p) ? source_p->sockhost : "255.255.255.255",
|
|
"?", source_p->info);
|
|
}
|
|
|
|
static void
|
|
h_gcn_client_exit(hook_data_client_exit *hdata)
|
|
{
|
|
struct Client *source_p;
|
|
|
|
source_p = hdata->target;
|
|
|
|
if (MyConnect(source_p) || !IsClient(source_p))
|
|
return;
|
|
if (!HasSentEob(source_p->servptr))
|
|
return;
|
|
sendto_realops_snomask_from(snomask_modes['F'], L_ALL, source_p->servptr,
|
|
"Client exiting: %s (%s@%s) [%s] [%s]",
|
|
source_p->name,
|
|
source_p->username, source_p->host, hdata->comment,
|
|
show_ip(NULL, source_p) ? source_p->sockhost : "255.255.255.255");
|
|
}
|