148 lines
3.3 KiB
C
148 lines
3.3 KiB
C
/* NeoStats - IRC Statistical Services
|
|
** Copyright (c) 1999-2006 Adam Rutter, Justin Hammond, Mark Hetherington
|
|
** http://www.neostats.net/
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
** USA
|
|
**
|
|
** NeoStats CVS Identification
|
|
** $Id$
|
|
*/
|
|
|
|
#include "neostats.h"
|
|
|
|
const char *fs_help_status[] =
|
|
{
|
|
"Current Status",
|
|
"Syntax: \2STATUS\2",
|
|
"",
|
|
"Provide you with the Current Status.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_verbose[] =
|
|
{
|
|
"\2VERBOSE <ON|OFF>\2",
|
|
"Enable verbose mode.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_nickflood[] =
|
|
{
|
|
"\2NICKFLOOD <ON|OFF>\2",
|
|
"Enable nick flood protection.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_nickfloodact[] =
|
|
{
|
|
"\2NICKFLOODACT <type>\2",
|
|
"Nick flood action.",
|
|
"<type> is",
|
|
"0 : Warn only",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_nickthreshold[] =
|
|
{
|
|
"\2NICKTHRESHOLD <number>\2",
|
|
"Threshold for join floods. <number> is number of changes in NICKSAMPLETIME seconds.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_nicksampletime[] =
|
|
{
|
|
"\2NICKSAMPLETIME <seconds>\2",
|
|
"Sample time for flood checking. <seconds> is NICKTHRESHOLD changes in <seconds>.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_joinflood[] =
|
|
{
|
|
"\2JOINFLOOD <ON|OFF>\2",
|
|
"Enable channel flood protection.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_joinfloodact[] =
|
|
{
|
|
"\2JOINFLOODACT <type>\2",
|
|
"Join flood action.",
|
|
"<type> is",
|
|
"0 : Warn only",
|
|
"1 : Lock channel",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_joinsampletime[] =
|
|
{
|
|
"\2JOINSAMPLETIME <seconds>\2",
|
|
"Sample time for flood checking. <seconds> is JOINTHRESHOLD changes in <seconds>.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_jointhreshold[] =
|
|
{
|
|
"\2JOINTHRESHOLD <number>\2",
|
|
"Threshold for join floods. <number> is number of changes in JOINSAMPLETIME seconds.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_chanlockkey[] =
|
|
{
|
|
"\2CHANLOCKKEY <key>\2",
|
|
"Key to use for locking the channel when flood protection is active",
|
|
"If key is set to 'random', FloodServ will generate random keys",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_chanlocktime[] =
|
|
{
|
|
"\2CHANLOCKTIME <seconds>\2",
|
|
"Time in seconds to lock a channel when flood protection is enabled.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_topicflood[] =
|
|
{
|
|
"\2TOPICFLOOD <ON|OFF>\2",
|
|
"Enable topic flood protection.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_topicfloodact[] =
|
|
{
|
|
"\2TOPICFLOODACT <type>\2",
|
|
"Topic flood action.",
|
|
"<type> is",
|
|
"0 : Warn only",
|
|
"1 : Lock Topic",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_topicthreshold[] =
|
|
{
|
|
"\2TOPICTHRESHOLD <number>\2",
|
|
"Threshold for topic floods. <number> is number of changes in TOPICSAMPLETIME seconds.",
|
|
NULL
|
|
};
|
|
|
|
const char *fs_help_set_topicsampletime[] =
|
|
{
|
|
"\2TOPICSAMPLETIME <seconds>\2",
|
|
"Sample time for flood checking. <seconds> is TOPICTHRESHOLD changes in <seconds>.",
|
|
NULL
|
|
};
|
|
|