aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorTaylor Yu <catalyst@torproject.org>2019-03-20 20:51:12 -0500
committerteor <teor@torproject.org>2019-03-25 14:13:45 +1000
commit5d2f5e482e9985ad00f517ac3725b2336fbb930b (patch)
treeeb5d8503585e62543e240e8c97079cf5d15dec9d /changes
parentebc7556dd0af1b7cc3e12ecc04d1db567d348b2e (diff)
downloadtor-5d2f5e482e9985ad00f517ac3725b2336fbb930b.tar.gz
tor-5d2f5e482e9985ad00f517ac3725b2336fbb930b.zip
Correctly report PT vs proxy during bootstrap
Previously, or_connection_t did not record whether or not the connection uses a pluggable transport. Instead, it stored the underlying proxy protocol of the pluggable transport in proxy_type. This made bootstrap reporting treat pluggable transport connections as plain proxy connections. Store a separate bit indicating whether a pluggable transport is in use, and decode this during bootstrap reporting. Fixes bug 28925; bugfix on 0.4.0.1-alpha.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug289254
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug28925 b/changes/bug28925
new file mode 100644
index 0000000000..a867443885
--- /dev/null
+++ b/changes/bug28925
@@ -0,0 +1,4 @@
+ o Minor bugfixes (bootstrap reporting):
+ - During bootstrap reporting, correctly distinguish pluggable
+ transports from plain proxies. Fixes bug 28925; bugfix on
+ 0.4.0.1-alpha.