diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-12 00:36:20 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-12 00:36:20 +0000 |
commit | b2c011a23adfb2472f51a4c18bf8f29e6e37bb04 (patch) | |
tree | a40a4658792c7b5143527c24bac2d62004254f4f /docs/inspircd.conf.example | |
parent | 278cc70b2514ac48fe8e2810c1789c41ca933ca9 (diff) |
Customizable by-byte-size recvq stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1365 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'docs/inspircd.conf.example')
-rw-r--r-- | docs/inspircd.conf.example | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/docs/inspircd.conf.example b/docs/inspircd.conf.example index 6b4c03f8f..089079bd1 100644 --- a/docs/inspircd.conf.example +++ b/docs/inspircd.conf.example @@ -108,7 +108,7 @@ # <connect allow="ip or host" password="blah" timeout="10"> # # <connect allow="ip or host" timeout="blah" flood="5"> # # <connect allow="ip or host" threshold="8" pingfreq="120"> # -# <connect allow="ip or host" sendq="99999"> # +# <connect allow="ip or host" sendq="99999" revcq="696969"> # # <connect deny="ip or host"> # # # # You may optionally include timeout="x" on any allow line, which # @@ -133,9 +133,22 @@ # dynamically allocated and can grow as needed up to the maximum # # size specified. # # # +# The optional recvq value is the maximum size which users in this # +# group may grow their receive queue to. This is recommended to be # +# kept pretty low compared to the sendq, as users will always # +# recieve more than they send in normal circumstances. The default # +# if not specified is 4096. # +# # +# IMPORTANT NOTE, CALL THE CONFUSION POLICE! # +# The sendq is the data waiting to be sent TO THE USER. # +# The recvq is the data being received FROM THE USER. # +# The names sendq and recvq are from the SERVER'S PERSPECTIVE not # +# that of the user... Just to clear up any confusion or complaints # +# that these are backwards :p # +# # <connect allow="196.12.*" password="secret"> -<connect allow="*" timeout="60" flood="10" timeout="60" pingfreq="120" sendq="262144"> +<connect allow="*" timeout="60" flood="10" timeout="60" pingfreq="120" sendq="262144" recvq="4096"> <connect deny="69.254.*"> |