aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-03-05 14:25:38 -0500
committerNick Mathewson <nickm@torproject.org>2014-03-05 14:31:13 -0500
commit2c25bb413ec44257a8b8692958a348aaa6553c8c (patch)
tree163046b626f81c6d588a8e39ec3a967722c583f3 /src
parent4f03804b080afd78d6242aece1e3aa3d62a00191 (diff)
downloadtor-2c25bb413ec44257a8b8692958a348aaa6553c8c.tar
tor-2c25bb413ec44257a8b8692958a348aaa6553c8c.tar.gz
Lower the maximum for PrecictedCircsRelevanceTime to one hour
Diffstat (limited to 'src')
-rw-r--r--src/or/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c
index db111b5e2..052971419 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -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)