summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2013-06-18 15:06:21 -0400
committerNick Mathewson <nickm@torproject.org>2013-06-18 15:06:21 -0400
commitf5729b8c1d45933f57e8df432c63197ecf8f266e (patch)
treeb73cee5543ae6b121146c9a968e29a397ee6dd25
parentcee6a991d2185b6bf600cda092c18eba83360efb (diff)
downloadtor-f5729b8c1d45933f57e8df432c63197ecf8f266e.tar.gz
tor-f5729b8c1d45933f57e8df432c63197ecf8f266e.zip
Reformat changelog a little to follow arma rules on spacingtor-0.2.4.14-alpha
-rw-r--r--ChangeLog18
1 files changed, 9 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 266a1ccf39..3fafe4b07f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,17 +5,17 @@ Changes in version 0.2.4.14-alpha - 2013-06-18
o Major bugfixes:
- When we have too much memory queued in circuits (according to a new
MaxMemInCellQueues option), close the circuits consuming the most
- memory. This prevents us from running out of memory as a relay if
- circuits fill up faster than they can be drained. Fixes
- bug 9063; bugfix on the 54th commit of Tor. This bug is a further
- fix beyond bug 6252, whose fix was merged into 0.2.3.21-rc.
+ memory. This prevents us from running out of memory as a relay if
+ circuits fill up faster than they can be drained. Fixes bug 9063;
+ bugfix on the 54th commit of Tor. This bug is a further fix beyond
+ bug 6252, whose fix was merged into 0.2.3.21-rc.
This change also fixes an earlier approach taken in 0.2.4.13-alpha,
- where we tried to solve this issue simply by imposing an upper limit on
- the number of queued cells for a single circuit. That approach proved
- to be problematic, since there are ways to provoke clients to send a
- number of cells in excess of any such reasonable limit. Fixes bug
- 9072; bugfix on 0.2.4.13-alpha.
+ where we tried to solve this issue simply by imposing an upper limit
+ on the number of queued cells for a single circuit. That approach
+ proved to be problematic, since there are ways to provoke clients to
+ send a number of cells in excess of any such reasonable limit. Fixes
+ bug 9072; bugfix on 0.2.4.13-alpha.
- Limit hidden service descriptors to at most ten introduction
points, to slow one kind of guard enumeration. Fixes bug 9002;