|
@@ -1,14 +1,14 @@
|
|
-Changes in version 0.2.1.3-alpha - 2008-07-xx
|
|
+Changes in version 0.2.1.3-alpha - 2008-08-03
|
|
o Bootstrapping bugfixes (on 0.2.1.x-alpha):
|
|
o Bootstrapping bugfixes (on 0.2.1.x-alpha):
|
|
- Send a bootstrap problem "warn" event on the first problem if the
|
|
- Send a bootstrap problem "warn" event on the first problem if the
|
|
reason is NO_ROUTE (that is, our network is down).
|
|
reason is NO_ROUTE (that is, our network is down).
|
|
|
|
|
|
o Major features:
|
|
o Major features:
|
|
- - Implements most of proposal 110: The first K cells to be send
|
|
+ - Implement most of proposal 110: The first K cells to be sent
|
|
- along a circuit are marked as special "early" cells; only K
|
|
+ along a circuit are marked as special "early" cells; only K "early"
|
|
- "early" cells will be allowed. Once this code is universal, we
|
|
+ cells will be allowed. Once this code is universal, we can block
|
|
- can block certain kinds of DOS attack by only allowing EXTEND
|
|
+ certain kinds of DOS attack by requiring that EXTEND commands must
|
|
- commands in these cells.
|
|
+ be sent using an "early" cell.
|
|
|
|
|
|
o Major bugfixes:
|
|
o Major bugfixes:
|
|
- Try to attach connections immediately upon receiving a RENDEZVOUS2
|
|
- Try to attach connections immediately upon receiving a RENDEZVOUS2
|
|
@@ -16,23 +16,23 @@ Changes in version 0.2.1.3-alpha - 2008-07-xx
|
|
on the client side when connecting to a hidden service. Bugfix
|
|
on the client side when connecting to a hidden service. Bugfix
|
|
on 0.0.6pre1. Found and fixed by Christian Wilms; resolves bug 743.
|
|
on 0.0.6pre1. Found and fixed by Christian Wilms; resolves bug 743.
|
|
- Ensure that two circuits can never exist on the same connection
|
|
- Ensure that two circuits can never exist on the same connection
|
|
- with the same circuit ID, even if one is marked for close. This
|
|
+ with the same circuit ID, even if one is marked for close. This
|
|
is conceivably a bugfix for bug 779; fixes a bug on 0.1.0.4-rc.
|
|
is conceivably a bugfix for bug 779; fixes a bug on 0.1.0.4-rc.
|
|
|
|
|
|
o Minor features:
|
|
o Minor features:
|
|
- When relays do their initial bandwidth measurement, don't limit
|
|
- When relays do their initial bandwidth measurement, don't limit
|
|
- to just our our entry guards for the test circuits. Otherwise we
|
|
+ to just our entry guards for the test circuits. Otherwise we tend
|
|
- tend to have multiple test circuits going through a single entry
|
|
+ to have multiple test circuits going through a single entry guard,
|
|
- guard, which makes our bandwidth test less accurate. Fixes part
|
|
+ which makes our bandwidth test less accurate. Fixes part of bug 654;
|
|
- of bug 654; patch contributed by Josh Albrecht.
|
|
+ patch contributed by Josh Albrecht.
|
|
- Add an ExcludeExitNodes option so users can list a set of nodes
|
|
- Add an ExcludeExitNodes option so users can list a set of nodes
|
|
that should be be excluded from the exit node position, but
|
|
that should be be excluded from the exit node position, but
|
|
- allowed elsewhere. Implements proposal 151.
|
|
+ allowed elsewhere. Implements proposal 151.
|
|
- Allow address patterns (e.g., 255.128.0.0/16) to appear in
|
|
- Allow address patterns (e.g., 255.128.0.0/16) to appear in
|
|
ExcludeNodes and ExcludeExitNodes lists.
|
|
ExcludeNodes and ExcludeExitNodes lists.
|
|
- - Change the implementation of ExcludeNodes and ExcludeExitNodes
|
|
+ - Change the implementation of ExcludeNodes and ExcludeExitNodes to
|
|
- to be more efficient. Formerly it was quadratic in the number
|
|
+ be more efficient. Formerly it was quadratic in the number of
|
|
- of servers; now it should be linear. Fixes bug 509.
|
|
+ servers; now it should be linear. Fixes bug 509.
|
|
- Save 16-22 bytes per open circuit by moving the n_hop, n_port,
|
|
- Save 16-22 bytes per open circuit by moving the n_hop, n_port,
|
|
and n_conn_id_digest fields into a separate structure that's
|
|
and n_conn_id_digest fields into a separate structure that's
|
|
only needed when the circuit has not yet attached to an n_conn.
|
|
only needed when the circuit has not yet attached to an n_conn.
|
|
@@ -43,7 +43,7 @@ Changes in version 0.2.1.3-alpha - 2008-07-xx
|
|
"root:wheel". Fixes bug 676, reported by Serge Koksharov.
|
|
"root:wheel". Fixes bug 676, reported by Serge Koksharov.
|
|
- Stop using __attribute__((nonnull)) with GCC: it can give us useful
|
|
- Stop using __attribute__((nonnull)) with GCC: it can give us useful
|
|
warnings (occasionally), but it can also cause the compiler to
|
|
warnings (occasionally), but it can also cause the compiler to
|
|
- eliminate error-checking code. Suggested by Peter Gutmann.
|
|
+ eliminate error-checking code. Suggested by Peter Gutmann.
|
|
- When a hidden service is giving up on an introduction point candidate
|
|
- When a hidden service is giving up on an introduction point candidate
|
|
that was not included in the last published rendezvous descriptor,
|
|
that was not included in the last published rendezvous descriptor,
|
|
don't reschedule publication of the next descriptor. Fixes bug 763.
|
|
don't reschedule publication of the next descriptor. Fixes bug 763.
|
|
@@ -51,18 +51,19 @@ Changes in version 0.2.1.3-alpha - 2008-07-xx
|
|
- Mark RendNodes, RendExcludeNodes, HiddenServiceNodes, and
|
|
- Mark RendNodes, RendExcludeNodes, HiddenServiceNodes, and
|
|
HiddenServiceExcludeNodes as obsolete: they never worked properly,
|
|
HiddenServiceExcludeNodes as obsolete: they never worked properly,
|
|
and nobody claims to be using them. Fixes bug 754. Bugfix on
|
|
and nobody claims to be using them. Fixes bug 754. Bugfix on
|
|
- 0.1.0.1-rc. Patch from Christian Wilms.
|
|
+ 0.1.0.1-rc. Patch from Christian Wilms.
|
|
- Fix a small alignment and memory-wasting bug on buffer chunks. Spotted
|
|
- Fix a small alignment and memory-wasting bug on buffer chunks. Spotted
|
|
by rovv.
|
|
by rovv.
|
|
|
|
|
|
o Minor bugfixes (controller):
|
|
o Minor bugfixes (controller):
|
|
- When closing an application-side connection because its circuit
|
|
- When closing an application-side connection because its circuit
|
|
is getting torn down, generate the stream event correctly.
|
|
is getting torn down, generate the stream event correctly.
|
|
- Bugfix on 0.1.2.x. Anonymous patch.
|
|
+ Bugfix on 0.1.2.x. Anonymous patch.
|
|
|
|
|
|
o Removed features
|
|
o Removed features
|
|
- - Remove all backward-compatibility code to support servers running
|
|
+ - Remove all backward-compatibility code to support relays running
|
|
- versions of Tor so old as to no longer work at all on the Tor network.
|
|
+ versions of Tor so old that they no longer work at all on the
|
|
|
|
+ Tor network.
|
|
|
|
|
|
|
|
|
|
Changes in version 0.2.0.29-rc - 2008-07-08
|
|
Changes in version 0.2.0.29-rc - 2008-07-08
|