Update extensions/spy_* with AV2 descriptions.

This commit is contained in:
Elizabeth Myers 2016-03-07 04:09:14 -06:00
parent 84b4c05888
commit 3bde01a819
7 changed files with 21 additions and 7 deletions

View File

@ -26,6 +26,8 @@
#include "ircd.h"
#include "send.h"
static const char spy_desc[] = "Sends a notice when someone uses ADMIN";
void show_admin(hook_data *);
mapi_hfn_list_av1 admin_hfnlist[] = {
@ -33,7 +35,7 @@ mapi_hfn_list_av1 admin_hfnlist[] = {
{NULL, NULL}
};
DECLARE_MODULE_AV2(admin_spy, NULL, NULL, NULL, NULL, admin_hfnlist, NULL, NULL, NULL);
DECLARE_MODULE_AV2(admin_spy, NULL, NULL, NULL, NULL, admin_hfnlist, NULL, NULL, spy_desc);
void
show_admin(hook_data *data)

View File

@ -26,6 +26,8 @@
#include "ircd.h"
#include "send.h"
static const char spy_desc[] = "Sends a notice when someone uses INFO";
void show_info(hook_data *);
mapi_hfn_list_av1 info_hfnlist[] = {
@ -33,7 +35,7 @@ mapi_hfn_list_av1 info_hfnlist[] = {
{NULL, NULL}
};
DECLARE_MODULE_AV2(info_spy, NULL, NULL, NULL, NULL, info_hfnlist, NULL, NULL, NULL);
DECLARE_MODULE_AV2(info_spy, NULL, NULL, NULL, NULL, info_hfnlist, NULL, NULL, spy_desc);
void
show_info(hook_data *data)

View File

@ -26,6 +26,8 @@
#include "ircd.h"
#include "send.h"
static const char spy_desc[] = "Sends a notice when someone uses LINKS";
void show_links(hook_data *);
mapi_hfn_list_av1 links_hfnlist[] = {
@ -33,7 +35,7 @@ mapi_hfn_list_av1 links_hfnlist[] = {
{NULL, NULL}
};
DECLARE_MODULE_AV2(links_spy, NULL, NULL, NULL, NULL, links_hfnlist, NULL, NULL, NULL);
DECLARE_MODULE_AV2(links_spy, NULL, NULL, NULL, NULL, links_hfnlist, NULL, NULL, spy_desc);
void
show_links(hook_data *data)

View File

@ -26,6 +26,8 @@
#include "ircd.h"
#include "send.h"
static const char spy_desc[] = "Sends a notice when someone looks at the MOTD";
void show_motd(hook_data *);
mapi_hfn_list_av1 motd_hfnlist[] = {
@ -33,7 +35,7 @@ mapi_hfn_list_av1 motd_hfnlist[] = {
{NULL, NULL}
};
DECLARE_MODULE_AV2(motd_spy, NULL, NULL, NULL, NULL, motd_hfnlist, NULL, NULL, NULL);
DECLARE_MODULE_AV2(motd_spy, NULL, NULL, NULL, NULL, motd_hfnlist, NULL, NULL, spy_desc);
void
show_motd(hook_data *data)

View File

@ -26,6 +26,8 @@
#include "ircd.h"
#include "send.h"
static const char spy_desc[] = "Sends a notice when someone uses STATS";
void show_stats(hook_data_int *);
mapi_hfn_list_av1 stats_hfnlist[] = {
@ -33,7 +35,7 @@ mapi_hfn_list_av1 stats_hfnlist[] = {
{NULL, NULL}
};
DECLARE_MODULE_AV2(stats_spy, NULL, NULL, NULL, NULL, stats_hfnlist, NULL, NULL, NULL);
DECLARE_MODULE_AV2(stats_spy, NULL, NULL, NULL, NULL, stats_hfnlist, NULL, NULL, spy_desc);
void
show_stats(hook_data_int *data)

View File

@ -26,6 +26,8 @@
#include "ircd.h"
#include "send.h"
static const char spy_desc[] = "Sends a notice when someone looks at the operator list";
void show_stats_p(hook_data *);
mapi_hfn_list_av1 stats_p_hfnlist[] = {
@ -33,7 +35,7 @@ mapi_hfn_list_av1 stats_p_hfnlist[] = {
{NULL, NULL}
};
DECLARE_MODULE_AV2(stats_p_spy, NULL, NULL, NULL, NULL, stats_p_hfnlist, NULL, NULL, NULL);
DECLARE_MODULE_AV2(stats_p_spy, NULL, NULL, NULL, NULL, stats_p_hfnlist, NULL, NULL, spy_desc);
void
show_stats_p(hook_data *data)

View File

@ -26,6 +26,8 @@
#include "ircd.h"
#include "send.h"
static const char spy_desc[] = "Sends a notice when someone uses TRACE or LTRACE";
void show_trace(hook_data_client *);
mapi_hfn_list_av1 trace_hfnlist[] = {
@ -33,7 +35,7 @@ mapi_hfn_list_av1 trace_hfnlist[] = {
{NULL, NULL}
};
DECLARE_MODULE_AV2(trace_spy, NULL, NULL, NULL, NULL, trace_hfnlist, NULL, NULL, NULL);
DECLARE_MODULE_AV2(trace_spy, NULL, NULL, NULL, NULL, trace_hfnlist, NULL, NULL, spy_desc);
void
show_trace(hook_data_client *data)