1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-01-07 14:20:29 +00:00

fix doc and manpage wrt. MaxConnections, MaxConnectionsIP and MaxJoins values

This commit is contained in:
Florian Westphal 2007-10-13 20:45:11 +00:00
parent d223b587e4
commit b160f574de
2 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# $Id: sample-ngircd.conf,v 1.40 2007/10/04 10:14:52 alex Exp $ # $Id: sample-ngircd.conf,v 1.41 2007/10/13 20:45:11 fw Exp $
# #
# This is a sample configuration file for the ngIRCd, which must be adepted # This is a sample configuration file for the ngIRCd, which must be adepted
@ -101,14 +101,14 @@
;PredefChannelsOnly = no ;PredefChannelsOnly = no
# Maximum number of simultaneous connection the server is allowed # Maximum number of simultaneous connection the server is allowed
# to accept (<=0: unlimited): # to accept (0: unlimited):
;MaxConnections = -1 ;MaxConnections = 0
# Maximum number of simultaneous connections from a single IP address # Maximum number of simultaneous connections from a single IP address
# the server will accept (<=0: unlimited): # the server will accept (0: unlimited):
;MaxConnectionsIP = 5 ;MaxConnectionsIP = 5
# Maximum number of channels a user can be member of (<=0: no limit): # Maximum number of channels a user can be member of (0: no limit):
;MaxJoins = 10 ;MaxJoins = 10
[Operator] [Operator]

View File

@ -1,5 +1,5 @@
.\" .\"
.\" $Id: ngircd.conf.5.tmpl,v 1.3 2007/06/28 05:15:14 fw Exp $ .\" $Id: ngircd.conf.5.tmpl,v 1.4 2007/10/13 20:45:12 fw Exp $
.\" .\"
.TH ngircd.conf 5 "August 2005" ngircd "ngIRCd Manual" .TH ngircd.conf 5 "August 2005" ngircd "ngIRCd Manual"
.SH NAME .SH NAME
@ -153,15 +153,15 @@ the config file.
.TP .TP
\fBMaxConnections\fR \fBMaxConnections\fR
Maximum number of simultaneous connection the server is allowed to accept Maximum number of simultaneous connection the server is allowed to accept
(<=0: unlimited). Default: -1. (0: unlimited). Default: 0.
.TP .TP
\fBMaxConnectionsIP\fR \fBMaxConnectionsIP\fR
Maximum number of simultaneous connections from a single IP address that Maximum number of simultaneous connections from a single IP address that
the server will accept (<=0: unlimited). This configuration options lowers the server will accept (0: unlimited). This configuration options lowers
the risk of denial of service attacks (DoS). Default: 5. the risk of denial of service attacks (DoS). Default: 5.
.TP .TP
\fBMaxJoins\fR \fBMaxJoins\fR
Maximum number of channels a user can be member of (<=0: no limit). Maximum number of channels a user can be member of (0: no limit).
Default: 10. Default: 10.
.SH [OPERATOR] .SH [OPERATOR]
.I [Operator] .I [Operator]