diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2012-06-14 21:15:08 -0700 |
---|---|---|
committer | Mike Perry <mikeperry-git@fscked.org> | 2012-06-14 21:20:10 -0700 |
commit | daedae4115dccd314b7aa3ffce642f2ac6123713 (patch) | |
tree | d125960c6e369edafe4081536aa74d6ab7499fd6 /src/or/circuitbuild.c | |
parent | 61a5730392fb83b78a45c06990a095fca67d7d61 (diff) | |
download | tor-daedae4115dccd314b7aa3ffce642f2ac6123713.tar.gz tor-daedae4115dccd314b7aa3ffce642f2ac6123713.zip |
Lower the default path bias notice rate to 40%.
I saw 72% on a test run with 26 circuits. 70% might be a little close to the
line. That, or min_circs is too low and we need to be more patient. We still
need to test/simulate more.
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 08ef56ffc8..01eeb14fe0 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2578,7 +2578,7 @@ pathbias_get_min_circs(const or_options_t *options) static double pathbias_get_notice_rate(const or_options_t *options) { -#define DFLT_PATH_BIAS_NOTICE_PCT 70 +#define DFLT_PATH_BIAS_NOTICE_PCT 40 if (options->PathBiasNoticeRate >= 0.0) return options->PathBiasNoticeRate; else |