Fix warnings from lintChanges

This commit is contained in:
Nick Mathewson 2015-09-09 09:35:05 -04:00
parent 98be93d6d7
commit 638e5f976b
11 changed files with 21 additions and 20 deletions

View File

@ -1,4 +1,3 @@
o Major features (relay, Ed25519):
- Significant improvements to the usability of relay-side Ed25519
key management. Log messages are better, and the code can

View File

@ -1,5 +1,6 @@
o Major bugfix
o Major features (security, hidden services):
- For an hidden service, it is now prohibited to use one single
EntryNodes to avoid a very easy guard discovery attack. For more
details, see the ticket description here:
https://trac.torproject.org/projects/tor/ticket/14917. Fixes #14917.
https://trac.torproject.org/projects/tor/ticket/14917. Fixes ticket 14917.

View File

@ -1,4 +1,4 @@
o Hidden service directory enhancement
- Relays need to have the Fast flag to ge the HSDir flag. As this is
o Minor features (Hidden service directory)
- Relays need to have the Fast flag to get the HSDir flag. As this is
being written, we'll go from 2745 HSDirs down to 2342, a ~14% drop.
Fixes #15983.
Fixes ticket 15963.

View File

@ -1,5 +1,5 @@
o Minor bugfix (open file limit):
- Fix set_max_file_descriptors() to set by default the max open file
limit to the current limit in case setrlimit() fails so we at least
have a usable value; Fixes #16274; bugfix on tor-0.2.0.10-alpha~71;
have a usable value; Fixes bug 16274; bugfix on tor-0.2.0.10-alpha.
Patch by dgoulet.

View File

@ -1,4 +1,4 @@
o Hidden Service Enhancement
o Minor features (hidden service)
Client now uses an introduction point failure cache to know when to
fetch or keep a descriptor in their cache.
@ -10,3 +10,4 @@
discard the descriptor and fetch a new one.
See rendcache.c for a detailed explanation of the cache's behavior.
Closes ticket 16389.

View File

@ -1,10 +1,10 @@
o Minor bugfixes
o Minor bugfixes (control port):
- Control port was using set_max_file_descriptors() with a limit set to
0 to get the max value. A recent fix made this use case return an
error and introduced dead code in that function. This triggered a
warning that our limit (ConnLimit) was invalid but in reality it was
not.
Now, to the control port uses a specific getter function to query the
value and set_max_file_descriptors() should never be used again for
that purpose. Fixes #16697; bugfix on 0.2.7.2-alpha.
that purpose. Fixes bug 16697; bugfix on 0.2.7.2-alpha.

View File

@ -1,4 +1,4 @@
o Minor bugfixes:
- Fix an usage message of tor-resolve(1) so that it no longer lists
the removed -F option. Resolves ticket #16913; bugfix on Tor
the removed -F option. Fixes bug 16913; bugfix on Tor
0.2.2.28-beta.

View File

@ -2,5 +2,5 @@
- When calling channel_free_list(), avoid calling smartlist_remove()
while inside a FOREACH loop. This partially reverts commit
17356fe7fd96af where the correct SMARTLIST_DEL_CURRENT was
removed. Fixes bug 16929; bugfix on 0.2.4.4-alpha.
removed. Fixes bug 16924; bugfix on 0.2.4.4-alpha.

View File

@ -1,4 +1,4 @@
o Minor bugfixes (linux seccomp2 sandbox):
- Allow routers with ed25519 keys to run correctly under the seccomp2
sandbox. Fixes bug 16964; bugfix on 0.2.7.2-alpha.
sandbox. Fixes bug 16965; bugfix on 0.2.7.2-alpha.

View File

@ -1,9 +1,9 @@
o Major enhancements (performance testing):
- Add chutney performance testing support to src/test/test-network.sh
The following arguments change how chutney verifies the network:
--bytes n sends n bytes per test connection (10 KBytes)
--connections n makes n test connections per client (1)
--hs-multi-client 1 makes each client connect to each HS (0)
"--bytes n" sends n bytes per test connection;
"--connections n" makes n test connections per client; and
"--hs-multi-client 1" makes each client connect to each HS.
Requires the corresponding chutney performance testing changes.
Note: using --connections 7 or greater on a HS will trigger #15937.
Patch by "teor".
Note: using --connections 7 or greater on a HS will trigger issue 15937.
Patch by "teor". Closes ticket 14175.

View File

@ -1,4 +1,4 @@
o Hidden Service Statistics
- Turn on hidden service statistics collection by setting the torrc
option HiddenServiceStatistics to "1" by default. Closes ticket
#15254.
15254.