From 3bde01a8198df2480160c59855a58258b2b480db Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Mon, 7 Mar 2016 04:09:14 -0600 Subject: [PATCH] Update extensions/spy_* with AV2 descriptions. --- extensions/spy_admin_notice.c | 4 +++- extensions/spy_info_notice.c | 4 +++- extensions/spy_links_notice.c | 4 +++- extensions/spy_motd_notice.c | 4 +++- extensions/spy_stats_notice.c | 4 +++- extensions/spy_stats_p_notice.c | 4 +++- extensions/spy_trace_notice.c | 4 +++- 7 files changed, 21 insertions(+), 7 deletions(-) diff --git a/extensions/spy_admin_notice.c b/extensions/spy_admin_notice.c index 3bc706ac..8d477063 100644 --- a/extensions/spy_admin_notice.c +++ b/extensions/spy_admin_notice.c @@ -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) diff --git a/extensions/spy_info_notice.c b/extensions/spy_info_notice.c index b23dfab3..01d60895 100644 --- a/extensions/spy_info_notice.c +++ b/extensions/spy_info_notice.c @@ -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) diff --git a/extensions/spy_links_notice.c b/extensions/spy_links_notice.c index ffe718c6..17b5d0e9 100644 --- a/extensions/spy_links_notice.c +++ b/extensions/spy_links_notice.c @@ -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) diff --git a/extensions/spy_motd_notice.c b/extensions/spy_motd_notice.c index 51471787..1a6c123e 100644 --- a/extensions/spy_motd_notice.c +++ b/extensions/spy_motd_notice.c @@ -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) diff --git a/extensions/spy_stats_notice.c b/extensions/spy_stats_notice.c index 73c63e5c..6bc23141 100644 --- a/extensions/spy_stats_notice.c +++ b/extensions/spy_stats_notice.c @@ -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) diff --git a/extensions/spy_stats_p_notice.c b/extensions/spy_stats_p_notice.c index b5b4524d..c068a252 100644 --- a/extensions/spy_stats_p_notice.c +++ b/extensions/spy_stats_p_notice.c @@ -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) diff --git a/extensions/spy_trace_notice.c b/extensions/spy_trace_notice.c index d7f830fd..e4f5e567 100644 --- a/extensions/spy_trace_notice.c +++ b/extensions/spy_trace_notice.c @@ -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)