Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
65817131
Commit
65817131
authored
Aug 24, 2018
by
Nick Mathewson
👁
Browse files
Merge branch 'maint-0.3.3' into maint-0.3.4
parents
dd27e17c
33e4e30d
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/27286
0 → 100644
View file @
65817131
o Minor features (directory authorities):
- Authorities no longer vote to make the subprotocol version "LinkAuth=1"
a requirement: it is unsupportable with NSS, and hasn't been needed
since Tor 0.3.0.1-alpha. Closes ticket 27286.
src/or/dirauth/dirvote.c
View file @
65817131
...
...
@@ -4513,16 +4513,16 @@ dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key,
/* These are hardwired, to avoid disaster. */
v3_out
->
recommended_relay_protocols
=
tor_strdup
(
"Cons=1-2 Desc=1-2 DirCache=1 HSDir=1 HSIntro=3 HSRend=1 "
"Link=4
LinkAuth=1
Microdesc=1-2 Relay=2"
);
"Link=4 Microdesc=1-2 Relay=2"
);
v3_out
->
recommended_client_protocols
=
tor_strdup
(
"Cons=1-2 Desc=1-2 DirCache=1 HSDir=1 HSIntro=3 HSRend=1 "
"Link=4
LinkAuth=1
Microdesc=1-2 Relay=2"
);
"Link=4 Microdesc=1-2 Relay=2"
);
v3_out
->
required_client_protocols
=
tor_strdup
(
"Cons=1-2 Desc=1-2 DirCache=1 HSDir=1 HSIntro=3 HSRend=1 "
"Link=4
LinkAuth=1
Microdesc=1-2 Relay=2"
);
"Link=4 Microdesc=1-2 Relay=2"
);
v3_out
->
required_relay_protocols
=
tor_strdup
(
"Cons=1 Desc=1 DirCache=1 HSDir=1 HSIntro=3 HSRend=1 "
"Link=3-4
LinkAuth=1
Microdesc=1 Relay=1-2"
);
"Link=3-4 Microdesc=1 Relay=1-2"
);
/* We are not allowed to vote to require anything we don't have. */
tor_assert
(
protover_all_supported
(
v3_out
->
required_relay_protocols
,
NULL
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment