summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNeel Chauhan <neel@neelc.org>2019-05-07 11:24:53 -0400
committerNeel Chauhan <neel@neelc.org>2019-05-07 11:52:56 -0400
commit3cafdeb8c0f1dfa60a964e4fba04b54d1ad97d15 (patch)
tree3655cd091d3c85ed77b7ba68454217906bcec26d /changes
parentb72f5da03d12e0ac2212d18e3dea309d23ded79c (diff)
downloadtor-3cafdeb8c0f1dfa60a964e4fba04b54d1ad97d15.tar.gz
tor-3cafdeb8c0f1dfa60a964e4fba04b54d1ad97d15.zip
Only call tor_addr_parse() in circuit_is_acceptable() when needed
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