mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
Drop MAX_REND_FAILURES to 8
This commit is contained in:
parent
17d5734df4
commit
2f59d6e2d8
2 changed files with 4 additions and 1 deletions
3
changes/bug4241
Normal file
3
changes/bug4241
Normal file
|
@ -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.
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue