]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Lower the maximum for PrecictedCircsRelevanceTime to one hour
authorNick Mathewson <nickm@torproject.org>
Wed, 5 Mar 2014 19:25:38 +0000 (14:25 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 5 Mar 2014 19:31:13 +0000 (14:31 -0500)
doc/tor.1.txt
src/or/config.c

index d9ff4eed9a2dbd4cd89a0614c1137501d65530be..a285dfd5b16f69461b1968ee0cff618acfbbfa25 100644 (file)
@@ -524,8 +524,10 @@ GENERAL OPTIONS
     \'info'. (Default: 0)
 
 **PredictedCircsRelevanceTime** __NUM__::
-    Set how long, after having requested a connection to a given port, we will
-    search for exits that support that port. (Default: 1 hour)
+    Set how long, after the client has mad an anonymized connection to a
+    given port, we will try to make sure that we build circuits to
+    exits that support that port. The maximum value for this option is 1
+    hour. (Default: 1 hour)
 
 **RunAsDaemon** **0**|**1**::
     If 1, Tor forks and daemonizes to the background. This option has no effect
index db111b5e261ba6db912a4e602cfa0e2036fd2aaf..0529714194a2ee16fc2fc3ed45941ab8456e9632 100644 (file)
@@ -2388,7 +2388,7 @@ compute_publishserverdescriptor(or_options_t *options)
 /** Higest allowable value for PredictedCircsRelevanceTime; if this is
  * too high, our selection of exits will decrease for an extended
  * period of time to an uncomfortable level .*/
-#define MAX_PREDICTED_CIRCS_RELEVANCE (24*60*60)
+#define MAX_PREDICTED_CIRCS_RELEVANCE (60*60)
 
 /** Highest allowable value for RendPostPeriod. */
 #define MAX_DIR_PERIOD (MIN_ONION_KEY_LIFETIME/2)