mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 22:58:50 +01:00
Merge branch 'bug25105_032' into maint-0.3.2
This commit is contained in:
commit
56857291b0
2 changed files with 6 additions and 1 deletions
5
changes/bug25105
Normal file
5
changes/bug25105
Normal file
|
@ -0,0 +1,5 @@
|
|||
o Minor bugfixes (v3 onion services):
|
||||
- Look at the "HSRend" protocol version, not the "HSDir" protocol
|
||||
version, when deciding whether a consensus entry can support
|
||||
the v3 onion service protocol as a rendezvous point.
|
||||
Fixes bug 25105; bugfix on 0.3.2.1-alpha.
|
|
@ -2709,7 +2709,7 @@ routerstatus_parse_entry_from_string(memarea_t *area,
|
|||
protocol_list_supports_protocol(tok->args[0], PRT_HSDIR,
|
||||
PROTOVER_HSDIR_V3);
|
||||
rs->supports_v3_rendezvous_point =
|
||||
protocol_list_supports_protocol(tok->args[0], PRT_HSDIR,
|
||||
protocol_list_supports_protocol(tok->args[0], PRT_HSREND,
|
||||
PROTOVER_HS_RENDEZVOUS_POINT_V3);
|
||||
}
|
||||
if ((tok = find_opt_by_keyword(tokens, K_V))) {
|
||||
|
|
Loading…
Add table
Reference in a new issue