diff options
author | David Goulet <dgoulet@torproject.org> | 2021-12-13 10:56:43 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2022-03-15 15:26:19 -0400 |
commit | 347eaa32bfbcdfb13c9e34397d8b068ed6f6ba17 (patch) | |
tree | b50f1e8c5789134dcfdeecd01a96ca7056fb8499 /changes | |
parent | 17a8b3c735f2d1a685c322d9f127350aa5f74667 (diff) | |
download | tor-347eaa32bfbcdfb13c9e34397d8b068ed6f6ba17.tar.gz tor-347eaa32bfbcdfb13c9e34397d8b068ed6f6ba17.zip |
relay: Lower DNS Exit-side timeout
Introduces two new consensus parameter:
exit_dns_timeout: Number of seconds before libevent should consider
the DNS request a timeout.
exit_dns_num_attempts: Number of attempts that libeven should retry a
previously failing query before calling it a timeout.
Closes #40312
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'changes')
-rw-r--r-- | changes/ticket40312 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/ticket40312 b/changes/ticket40312 new file mode 100644 index 0000000000..ef572d0e69 --- /dev/null +++ b/changes/ticket40312 @@ -0,0 +1,5 @@ + o Major bugfixes (relay, DNS): + - Lower the DNS timeout from 3 attempts at 5 seconds each to 2 attempts at + 1 seconds each. Two new consensus parameters were added to control these + values. See ticket for more details on why. Fixes bug 40312; bugfix on + 0.3.5.1-alpha. |