]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
For now, never disable any guards.
authorMike Perry <mikeperry-git@fscked.org>
Wed, 13 Jun 2012 23:37:43 +0000 (16:37 -0700)
committerMike Perry <mikeperry-git@fscked.org>
Thu, 14 Jun 2012 20:20:01 +0000 (13:20 -0700)
src/or/circuitbuild.c

index 9969f7e209ff032bb1f07845016d5b7e5ffec9ab..08ef56ffc85681dcee24c720294c7e03691c7e8a 100644 (file)
@@ -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