]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Drop MAX_REND_FAILURES to 8
authorNick Mathewson <nickm@torproject.org>
Wed, 2 Apr 2014 19:36:13 +0000 (15:36 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 2 Apr 2014 19:36:13 +0000 (15:36 -0400)
changes/bug4241 [new file with mode: 0644]
src/or/rendservice.c

diff --git a/changes/bug4241 b/changes/bug4241
new file mode 100644 (file)
index 0000000..a7d34bf
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor bugfixes:
+    - Only retry attempts to connect to a chosen rendezvous point 8 times,
+      not 30. Fixes bug #4241; bugfix on 0.1.0.1-rc.
index 500efaf208caa9a1bbc8edccd1ad4d46269f1838..abd78da73a3195e3bed11a7cea2fed1bb5418511 100644 (file)
@@ -82,7 +82,7 @@ typedef struct rend_service_port_config_t {
 #define MAX_INTRO_CIRCS_PER_PERIOD 10
 /** How many times will a hidden service operator attempt to connect to
  * a requested rendezvous point before giving up? */
-#define MAX_REND_FAILURES 30
+#define MAX_REND_FAILURES 8
 /** How many seconds should we spend trying to connect to a requested
  * rendezvous point before giving up? */
 #define MAX_REND_TIMEOUT 30