mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Merge branch 'maint-0.2.2'
This commit is contained in:
commit
36829539d6
6
changes/bug4124
Normal file
6
changes/bug4124
Normal file
@ -0,0 +1,6 @@
|
||||
o Security fixes:
|
||||
- Bridges relays now build circuits for themselves in a more similar
|
||||
way to how clients build them. Removes another avenue for
|
||||
enumerating bridges. Fixes bug 4124; bugfix on 0.2.0.3-alpha,
|
||||
when bridges were introduced.
|
||||
|
@ -1982,9 +1982,10 @@ should_use_create_fast_for_circuit(origin_circuit_t *circ)
|
||||
return 1; /* our hand is forced: only a create_fast will work. */
|
||||
if (!options->FastFirstHopPK)
|
||||
return 0; /* we prefer to avoid create_fast */
|
||||
if (server_mode(options)) {
|
||||
if (public_server_mode(options)) {
|
||||
/* We're a server, and we know an onion key. We can choose.
|
||||
* Prefer to blend in. */
|
||||
* Prefer to blend our circuit into the other circuits we are
|
||||
* creating on behalf of others. */
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user