summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-19 18:25:42 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-19 18:25:42 +0000
commit05b30f562021f60d952fec2fc7b24347afc94cc7 (patch)
tree34a43761cbb99bdd7b86c9b5e0fc97e36b1bdafd /modules
parentbe8649f905fe20b74433e69cf989cd7847caa30f (diff)
- INFO now also shows configured values of 'disable_fake_channels',
and 'stats_e_disabled' git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1767 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r--modules/m_info.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/m_info.c b/modules/m_info.c
index 02db2cb..3a7465a 100644
--- a/modules/m_info.c
+++ b/modules/m_info.c
@@ -149,6 +149,12 @@ static const struct InfoStruct info_table[] =
"Enable logging"
},
{
+ "disable_fake_channels",
+ OUTPUT_BOOLEAN_YN,
+ &ConfigChannel.disable_fake_channels,
+ "Forbids channels with special ASCII characters in their name"
+ },
+ {
"restrict_channels",
OUTPUT_BOOLEAN_YN,
&ConfigChannel.restrict_channels,
@@ -383,6 +389,12 @@ static const struct InfoStruct info_table[] =
"Display warning if connecting server lacks N-line"
},
{
+ "stats_e_disabled",
+ OUTPUT_BOOLEAN_YN,
+ &ConfigFileEntry.stats_e_disabled,
+ "Whether or not STATS e is disabled"
+ },
+ {
"stats_o_oper_only",
OUTPUT_BOOLEAN_YN,
&ConfigFileEntry.stats_o_oper_only,