This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats-NeoIRCd/contrib/spy_info_notice.c
2002-08-13 14:45:13 +00:00

55 lines
1.6 KiB
C

/*
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
* spy_info_notice.c: Sends a notice when someone uses INFO.
*
* Copyright (C) 2002 by the past and present ircd coders, and others.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* $Id: spy_info_notice.c,v 1.2 2002/08/13 14:45:00 fishwaldo Exp $
*/
#include "stdinc.h"
#include "modules.h"
#include "hook.h"
#include "client.h"
#include "ircd.h"
#include "send.h"
int show_info(struct hook_spy_data *);
void
_modinit(void)
{
hook_add_hook("doing_info", (hookfn *)show_info);
}
void
_moddeinit(void)
{
hook_del_hook("doing_info", (hookfn *)show_info);
}
const char *_version = "$Revision: 1.2 $";
int show_info(struct hook_spy_data *data)
{
sendto_realops_flags(FLAGS_SPY, L_ALL,
"info requested by %s (%s@%s) [%s]",
data->source_p->name, data->source_p->username,
data->source_p->host, data->source_p->user->server);
return 0;
}