summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2018-02-09 17:24:45 -0500
committerRoger Dingledine <arma@torproject.org>2018-02-09 17:24:45 -0500
commit416a385fee065f8894a205656c1184ad6988dcfc (patch)
tree9ea6b236a71907db62f6b21cff4522823c36e92e
parent3fdd08a174f74f12ec156f3f72835e23a3fe539c (diff)
downloadtor-416a385fee065f8894a205656c1184ad6988dcfc.tar.gz
tor-416a385fee065f8894a205656c1184ad6988dcfc.zip
final mucking. all yours, nick
-rw-r--r--ChangeLog12
1 files changed, 6 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ddfed986c..9fb15e857f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -57,10 +57,10 @@ Changes in version 0.3.3.2-alpha - 2018-02-09
ticket 24972.
o Minor bugfix (channel connection):
- - The accurate address of a connection is real_addr, not the addr
- member. TLS Channel remote address is now real_addr content
- instead of addr member. Fixes bug 24952; bugfix on
- 0.2.4.11-alpha. Patch by "ffmancera".
+ - Use the actual observed address of an incoming relay connection,
+ not the canonical address of the relay from its descriptor, when
+ making decisions about how to handle the incoming connection. Fixes
+ bug 24952; bugfix on 0.2.4.11-alpha. Patch by "ffmancera".
o Minor bugfix (directory authority):
- Directory authorities, when refusing a descriptor from a rejected
@@ -120,11 +120,11 @@ Changes in version 0.3.3.2-alpha - 2018-02-09
o Minor bugfixes (scheduler, KIST):
- Avoid adding the same channel twice in the KIST scheduler pending
- list, which would waste CPU cycles handling the same channel twice.
+ list, which would waste CPU cycles.
Fixes bug 24700; bugfix on 0.3.2.1-alpha.
o Minor bugfixes (unit test, monotonic time):
- - Bump a gap of 1msec to 10msec in the monotonic time test that
+ - Increase a constant (1msec to 10msec) in the monotonic time test that
makes sure the nsec/usec/msec times read are synchronized. This
change was needed to accommodate slow systems like armel or when
the clock_gettime() is not a VDSO on the running kernel. Fixes bug