diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2013-01-30 18:40:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-01 17:01:12 -0500 |
commit | dfcfb5d17dcb89d51cdfe11ee89cb82791624ee3 (patch) | |
tree | 74905d5a4689ddd6d1976a49313a420ae9b9a9f6 /doc | |
parent | 2b2c7f23f5b36ee01540d40acae1230b38aa66a0 (diff) | |
download | tor-dfcfb5d17dcb89d51cdfe11ee89cb82791624ee3.tar.gz tor-dfcfb5d17dcb89d51cdfe11ee89cb82791624ee3.zip |
Refactor the scaling parameter fetching into a single function.
Also, deprecate the torrc options for the scaling values. It's unlikely anyone
but developers will ever tweak them, even if we provided a single ratio value.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tor.1.txt | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/doc/tor.1.txt b/doc/tor.1.txt index 5d4b51c185..bdc78eac64 100644 --- a/doc/tor.1.txt +++ b/doc/tor.1.txt @@ -1238,11 +1238,7 @@ The following options are useful only for clients (that is, if **PathBiasDropGuards** __NUM__ + -**PathBiasScaleThreshold** __NUM__ + - -**PathBiasMultFactor** __NUM__ + - -**PathBiasScaleFactor** __NUM__:: +**PathBiasScaleThreshold** __NUM__:: These options override the default behavior of Tor's (**currently experimental**) path bias detection algorithm. To try to find broken or misbehaving guard nodes, Tor looks for nodes where more than a certain @@ -1256,14 +1252,13 @@ The following options are useful only for clients (that is, if is set to 1, we disable use of that guard. + + When we have seen more than PathBiasScaleThreshold - circuits through a guard, we scale our observations by - PathBiasMultFactor/PathBiasScaleFactor, so that new observations don't get - swamped by old ones. + + circuits through a guard, we scale our observations by 0.5 (governed by + the consensus) so that new observations don't get swamped by old ones. + + By default, or if a negative value is provided for one of these options, Tor uses reasonable defaults from the networkstatus consensus document. If no defaults are available there, these options default to 150, .70, - .50, .30, 0, 300, 1, and 2 respectively. + .50, .30, 0, and 300 respectively. **PathBiasUseThreshold** __NUM__ + |