Add AV2 descriptions for extensions/sno_*
This commit is contained in:
parent
3fd3d7e176
commit
84b4c05888
6 changed files with 29 additions and 5 deletions
|
@ -21,7 +21,10 @@ mapi_hfn_list_av1 scc_hfnlist[] = {
|
|||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
DECLARE_MODULE_AV2(sno_channelcreate, _modinit, _moddeinit, NULL, NULL, scc_hfnlist, NULL, NULL, NULL);
|
||||
static const char sno_desc[] =
|
||||
"Adds server notice mask +l that allows operators to receive channel creation notices";
|
||||
|
||||
DECLARE_MODULE_AV2(sno_channelcreate, _modinit, _moddeinit, NULL, NULL, scc_hfnlist, NULL, NULL, sno_desc);
|
||||
|
||||
static int
|
||||
_modinit(void)
|
||||
|
|
|
@ -26,7 +26,10 @@ mapi_hfn_list_av1 gcn_hfnlist[] = {
|
|||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
DECLARE_MODULE_AV2(globalconnexit, _modinit, _moddeinit, NULL, NULL, gcn_hfnlist, NULL, NULL, NULL);
|
||||
static const char sno_desc[] =
|
||||
"Adds server notice mask +F that allows operators to receive notices for connections on other servers";
|
||||
|
||||
DECLARE_MODULE_AV2(globalconnexit, _modinit, _moddeinit, NULL, NULL, gcn_hfnlist, NULL, NULL, sno_desc);
|
||||
|
||||
static int
|
||||
_modinit(void)
|
||||
|
|
|
@ -22,6 +22,9 @@ mapi_hfn_list_av1 gla_hfnlist[] = {
|
|||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
static const char sno_desc[] =
|
||||
"Adds server notices for global XLINEs, KLINEs, and DLINEs";
|
||||
|
||||
DECLARE_MODULE_AV2(globallineactive, NULL, NULL, NULL, NULL, gla_hfnlist, NULL, NULL, NULL);
|
||||
|
||||
static void
|
||||
|
|
|
@ -19,7 +19,10 @@ mapi_hfn_list_av1 gcn_hfnlist[] = {
|
|||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
DECLARE_MODULE_AV2(globalnickchange, _modinit, NULL, NULL, NULL, gcn_hfnlist, NULL, NULL, NULL);
|
||||
static const char sno_desc[] =
|
||||
"Adds server notices for remote nick changes";
|
||||
|
||||
DECLARE_MODULE_AV2(globalnickchange, _modinit, NULL, NULL, NULL, gcn_hfnlist, NULL, NULL, sno_desc);
|
||||
|
||||
static int
|
||||
_modinit(void)
|
||||
|
|
|
@ -18,7 +18,10 @@ mapi_hfn_list_av1 sgo_hfnlist[] = {
|
|||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
DECLARE_MODULE_AV2(sno_globaloper, NULL, NULL, NULL, NULL, sgo_hfnlist, NULL, NULL, NULL);
|
||||
static const char sno_desc[] =
|
||||
"Adds server notices for remote oper up";
|
||||
|
||||
DECLARE_MODULE_AV2(sno_globaloper, NULL, NULL, NULL, NULL, sgo_hfnlist, NULL, NULL, sno_desc);
|
||||
|
||||
static void
|
||||
h_sgo_umode_changed(void *vdata)
|
||||
|
|
|
@ -38,7 +38,16 @@ fini(void)
|
|||
snomask_modes['W'] = 0;
|
||||
}
|
||||
|
||||
DECLARE_MODULE_AV2(sno_whois, init, fini, NULL, NULL, whois_hfnlist, NULL, NULL, NULL);
|
||||
static const char sno_desc[] =
|
||||
"Adds server notice mask +W that allows "
|
||||
#ifdef OPERONLY
|
||||
"operators"
|
||||
#else
|
||||
"users"
|
||||
#endif
|
||||
" to receive notices for when a WHOIS has been done on them";
|
||||
|
||||
DECLARE_MODULE_AV2(sno_whois, init, fini, NULL, NULL, whois_hfnlist, NULL, NULL, sno_desc);
|
||||
|
||||
void
|
||||
show_whois(hook_data_client *data)
|
||||
|
|
Loading…
Reference in a new issue