mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 11:29:05 +01:00
43 lines
962 B
C
43 lines
962 B
C
/*
|
|
* Remote client nick change notices.
|
|
*/
|
|
|
|
#include "stdinc.h"
|
|
#include "modules.h"
|
|
#include "client.h"
|
|
#include "hook.h"
|
|
#include "ircd.h"
|
|
#include "send.h"
|
|
#include "s_conf.h"
|
|
#include "snomask.h"
|
|
|
|
static int _modinit(void);
|
|
static void h_gnc_nick_change(hook_data *data);
|
|
|
|
mapi_hfn_list_av1 gcn_hfnlist[] = {
|
|
{ "remote_nick_change", (hookfn) h_gnc_nick_change },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
DECLARE_MODULE_AV1(globalnickchange, _modinit, NULL, NULL, NULL, gcn_hfnlist, "$Revision: 1869 $");
|
|
|
|
static int
|
|
_modinit(void)
|
|
{
|
|
/* show the fact that we are showing user information in /version */
|
|
opers_see_all_users = 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
h_gnc_nick_change(hook_data *data)
|
|
{
|
|
struct Client *source_p = data->client;
|
|
const char *oldnick = data->arg1;
|
|
const char *newnick = data->arg2;
|
|
|
|
sendto_realops_snomask_from(SNO_NCHANGE, L_ALL, source_p->servptr,
|
|
"Nick change: From %s to %s [%s@%s]",
|
|
oldnick, newnick, source_p->username, source_p->host);
|
|
}
|