]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
remember our future plan for bug 3617
authorRoger Dingledine <arma@torproject.org>
Thu, 21 Jul 2011 04:34:58 +0000 (00:34 -0400)
committerRoger Dingledine <arma@torproject.org>
Thu, 21 Jul 2011 04:34:58 +0000 (00:34 -0400)
(that is, to change the default for "UseOptimisticData auto" to
1 once we are more convinced that it works correctly.)

src/or/circuituse.c

index c48020115aeabe649840e9477f128d45fbf1d66b..91f75733acb2b11351188e342205952f32422ffe 100644 (file)
@@ -1555,6 +1555,8 @@ optimistic_data_enabled(void)
 {
   const or_options_t *options = get_options();
   if (options->OptimisticData < 0) {
+    /* XXX023 consider having auto default to 1 rather than 0 before
+     * the 0.2.3 branch goes stable. See bug 3617. -RD */
     const int32_t enabled =
       networkstatus_get_param(NULL, "UseOptimisticData", 0, 0, 1);
     return (int)enabled;