diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-17 20:54:13 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-17 20:54:13 +0000 |
commit | 588b93a2bad8f9326a67e87c28778cf32d11122c (patch) | |
tree | 2a47833ccec0cf353d5a24c7d7eb31676fc36eff /docs | |
parent | 0ff5bafa32e76a447f4a1315177de0ee12111d4e (diff) |
Added configurable SOMAXCONN size
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1419 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs')
-rw-r--r-- | docs/inspircd.conf.example | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index 5a35a4be2..e99e9772e 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -347,12 +347,26 @@ # spam vector or means of flooding an ircd. The # # default is 128, it is not recommended to raise it # # above 1024. Values up to 65535 are permitted. # +# somaxconn - The maximum number of sockets that may be waiting # +# in the accept queue. This usually allows the ircd # +# to soak up more connections in a shorter space of # +# time when increased but please be aware there is a # +# system defined maximum value to this, the same way # +# there is a system defined maximum number of file # +# descriptors. Some systems may only allow this to # +# be up to 5 (ugh) while others such as FreeBSD will # +# default to a much nicer 128. # +# moduledir - This optional value indicates a runtime change of # +# the location where modules are to be found. This # +# does not add a supplementary directory. There can # +# only be one module path. # <options prefixquit="Quit: " loglevel="default" netbuffersize="10240" maxwho="128" noservices="0" + somaxconn="128" allowhalfop="yes"> |