diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-04-05 15:01:19 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-04-05 16:24:42 -0400 |
commit | 1a49fdecf89c44cb4b2975caf5a22b16f15a2a83 (patch) | |
tree | b90f0c05cfe10538b78a28988f0f51ebdb9ed775 /doc | |
parent | e61f3293e479bb6cadb87026937402a3c440f513 (diff) | |
download | tor-1a49fdecf89c44cb4b2975caf5a22b16f15a2a83.tar.gz tor-1a49fdecf89c44cb4b2975caf5a22b16f15a2a83.zip |
Tweaks to Cagara's CountPrivateBandwidth patch:
- Document it in the manpage
- Add a changes entry
- No need to log when it is set: we don't log for other options.
- Use doxygen to document the new flag.
- Test truth of C variables with "if (x)", not "if (x == 1)".
- Simplify a complex boolean expression by breaking it up.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tor.1.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/tor.1.txt b/doc/tor.1.txt index eaebf440ae..5a70cd2a5f 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -437,6 +437,12 @@ Other options can be specified either on the command-line (--option and you're running on Windows, setting this option to 1 will tell Libevent not to use the Windows IOCP networking API. (Default: 1) +**CountPrivateBandwidth** **0**|**1**:: + If this option is set, then Tor's rate-limiting applies not only to + remote connections, but also to connections to private addresses like + 127.0.0.1 or 10.0.0.1. This is mostly useful for debugging + rate-limiting. (Default: 0) + CLIENT OPTIONS -------------- @@ -1342,6 +1348,7 @@ The following options are used for running a testing Tor network. AuthDirMaxServersPerAuthAddr 0 ClientDNSRejectInternalAddresses 0 ClientRejectInternalAddresses 0 + CountPrivateBandwidth 1 ExitPolicyRejectPrivate 0 V3AuthVotingInterval 5 minutes V3AuthVoteDelay 20 seconds |