aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-05-14 11:43:10 -0400
committerNick Mathewson <nickm@torproject.org>2019-05-14 11:43:10 -0400
commit43d41194546dbf6a634648d592e97ccd10b04fda (patch)
tree38993fbcd05836ca6a9df5ec4c55e5ae46c97606 /changes
parent0f4f4fdcf56b88cd36bc94e8a45ccd9c5dce3a60 (diff)
parent3cafdeb8c0f1dfa60a964e4fba04b54d1ad97d15 (diff)
downloadtor-43d41194546dbf6a634648d592e97ccd10b04fda.tar.gz
tor-43d41194546dbf6a634648d592e97ccd10b04fda.zip
Merge remote-tracking branch 'tor-github/pr/1004'
Diffstat (limited to 'changes')
-rw-r--r--changes/bug222107
1 files changed, 7 insertions, 0 deletions
diff --git a/changes/bug22210 b/changes/bug22210
new file mode 100644
index 0000000000..d7a00fd72c
--- /dev/null
+++ b/changes/bug22210
@@ -0,0 +1,7 @@
+ o Minor bugfixes (onion services, performance):
+ - If we are building circuits to onion services, in circuit_is_acceptable()
+ we only call tor_addr_parse() in places where we use the returned
+ family and address values from this function. Previously, we called
+ tor_addr_parse() in circuit_is_acceptable() even if it wasn't used.
+ This change will improve performance when building circuits. Fixes
+ bug 22210; bugfix on 0.2.8.12. Patch by Neel Chauhan