summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Perry <mikeperry-git@fscked.org>2012-06-13 16:37:43 -0700
committerMike Perry <mikeperry-git@fscked.org>2012-06-14 13:20:01 -0700
commit61a5730392fb83b78a45c06990a095fca67d7d61 (patch)
tree7de3551cfa45db941f06afb062ce4b418ccaebec
parent8d59690033b1cc2b462b2b9ed61ddeaebb6f9ab0 (diff)
downloadtor-61a5730392fb83b78a45c06990a095fca67d7d61.tar.gz
tor-61a5730392fb83b78a45c06990a095fca67d7d61.zip
For now, never disable any guards.
-rw-r--r--src/or/circuitbuild.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 9969f7e209..08ef56ffc8 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -2589,7 +2589,8 @@ pathbias_get_notice_rate(const or_options_t *options)
static double
pathbias_get_disable_rate(const or_options_t *options)
{
-#define DFLT_PATH_BIAS_DISABLE_PCT 50
+// XXX: This needs tuning based on use + experimentation before we set it
+#define DFLT_PATH_BIAS_DISABLE_PCT 0
if (options->PathBiasDisableRate >= 0.0)
return options->PathBiasDisableRate;
else