diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-25 18:00:55 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-25 18:00:55 +0000 |
commit | d01978194558a422cf886acb114546d0cbe84c76 (patch) | |
tree | d06a63a413cd24c4cd1bc2b4ebac803bea2a95d9 /docs | |
parent | a21b0c77e73175f1633fa3f40bed5eb744006bbb (diff) |
Add parsing of <limits> tag and finish documenting it, make all the values match sensibly by starting them all 'max' rather than some starting with it, some ending with it...
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9808 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs')
-rw-r--r-- | docs/inspircd.conf.example | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index 8e7ebdb00..c925971d5 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -1052,11 +1052,11 @@ # # # Values here should be self explanitory: # # # -# nickmax - The maximum length of a nickname # -# chanmax - The maximum length of a channel name # -# modemax - The maximum number of parameterized mode changes # +# maxnick - The maximum length of a nickname # +# maxchan - The maximum length of a channel name # +# maxmodes - The maximum number of parameterized mode changes # # per line # -# identmax - The maximum length of an ident/username value # +# maxident - The maximum length of an ident/username value # # maxquit - The maximum length of a quit message # # maxtopic - The maximum length of a channel topic # # maxkick - The maximum length of a kick message # @@ -1064,10 +1064,10 @@ # maxaway - The maximum length of an away message # # # -<limits nickmax="31" - chanmax="64" - modemax="20" - identmax="11" +<limits maxnick="31" + maxchan="64" + maxmodes="20" + maxident="11" maxquit="255" maxtopic="307" maxkick="255" |