-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloodservhelp.c
More file actions
148 lines (130 loc) · 3.36 KB
/
floodservhelp.c
File metadata and controls
148 lines (130 loc) · 3.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/* 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: floodservhelp.c 61 2006-01-26 15:32:19Z Fish $
*/
#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
};