From 05b30f562021f60d952fec2fc7b24347afc94cc7 Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 19 Jan 2013 18:25:42 +0000 Subject: - 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 --- modules/m_info.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'modules') 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 @@ -148,6 +148,12 @@ static const struct InfoStruct info_table[] = &ConfigLoggingEntry.use_logging, "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, @@ -382,6 +388,12 @@ static const struct InfoStruct info_table[] = &ConfigFileEntry.warn_no_nline, "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, -- cgit