From bf0b2a98cdeadea2ae4e22eca8a9536cd5ed2ec4 Mon Sep 17 00:00:00 2001 From: codemastr Date: Sun, 13 Apr 2003 19:10:42 +0000 Subject: [PATCH] Docs update --- Changes | 2 ++ help.conf | 2 ++ src/s_serv.c | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/Changes b/Changes index 957a043b7..ce32ec6bc 100644 --- a/Changes +++ b/Changes @@ -2053,3 +2053,5 @@ seen. gmtime warning still there - Made it so you can use a ~ as the first character of an ident with /chgident (#0000765) reported by AngryWolf - badword::action::block should now be ok +- Added some missing /stats flags to help.conf and the /stats ? output (#0000886) reported + by Rocko diff --git a/help.conf b/help.conf index ce7a09ec6..83c59831f 100644 --- a/help.conf +++ b/help.conf @@ -395,6 +395,7 @@ help Stats { " n - Send the ban realname block list"; " N - Send network configuration list"; " O - Send the oper block list"; + " P - Send information about ports"; " q - Send the SQLINE list"; " Q - Send the ban nick block list"; " r - Send the channel deny/allow block list"; @@ -406,6 +407,7 @@ help Stats { " U - Send the ulines block list"; " v - Send the deny version block list"; " V - Send the vhost block list"; + " X - Send a list of all servers that are not linked"; " Y - Send the class block list"; " Z - Send memory usage information"; " ==---------------------oOo---------------------=="; diff --git a/src/s_serv.c b/src/s_serv.c index dc28ce0ef..d593a4714 100644 --- a/src/s_serv.c +++ b/src/s_serv.c @@ -2641,6 +2641,8 @@ CMD_FUNC(m_stats) "N - Send network configuration list"); sendto_one(sptr, rpl_str(RPL_STATSHELP), me.name, parv[0], "O - Send the oper block list"); + sendto_one(sptr, rpl_str(RPL_STATSHELP), me.name, parv[0], + "P - Send information about ports"); sendto_one(sptr, rpl_str(RPL_STATSHELP), me.name, parv[0], "q - Send the SQLINE list"); sendto_one(sptr, rpl_str(RPL_STATSHELP), me.name, parv[0], @@ -2667,6 +2669,8 @@ CMD_FUNC(m_stats) "v - Send the deny version block list"); sendto_one(sptr, rpl_str(RPL_STATSHELP), me.name, parv[0], "V - Send the vhost block list"); + sendto_one(sptr, rpl_str(RPL_STATSHELP), me.name, parv[0], + "X - Send a list of servers that are not currently linked"); sendto_one(sptr, rpl_str(RPL_STATSHELP), me.name, parv[0], "Y - Send the class block list"); sendto_one(sptr, rpl_str(RPL_STATSHELP), me.name, parv[0],