mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
Merge branch 'bug25213_033' into maint-0.3.3
This commit is contained in:
commit
46c2b0ca22
5
changes/bug25213
Normal file
5
changes/bug25213
Normal file
@ -0,0 +1,5 @@
|
||||
o Minor bugfixes (warnings, ipv6):
|
||||
- Avoid a bug warning that could occur when trying to connect to
|
||||
a relay over IPv6 on a Tor instance that downloads router descriptors,
|
||||
but prefers to use microdescriptors. Fixes bug 25213; bugfix on
|
||||
0.3.3.1-alpha.
|
@ -2857,8 +2857,18 @@ extend_info_from_node(const node_t *node, int for_direct_connect)
|
||||
tor_addr_port_t ap;
|
||||
int valid_addr = 0;
|
||||
|
||||
if (node->ri == NULL && (node->rs == NULL || node->md == NULL))
|
||||
return NULL;
|
||||
const int is_bridge = node_is_a_configured_bridge(node);
|
||||
const int we_use_mds = we_use_microdescriptors_for_circuits(get_options());
|
||||
|
||||
if (is_bridge || !we_use_mds) {
|
||||
/* We need an ri in this case. */
|
||||
if (!node->ri)
|
||||
return NULL;
|
||||
} else {
|
||||
/* Otherwise we need an md. */
|
||||
if (node->rs == NULL || node->md == NULL)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Choose a preferred address first, but fall back to an allowed address.
|
||||
* choose_address returns 1 on success, but get_prim_orport returns 0. */
|
||||
|
@ -1237,6 +1237,10 @@ test_build_update_descriptors(void *arg)
|
||||
node->is_running = node->is_valid = node->is_fast = node->is_stable = 1;
|
||||
}
|
||||
|
||||
/* We have to set thise, or the lack of microdescriptors for these
|
||||
* nodes will make them unusable. */
|
||||
get_options_mutable()->UseMicrodescriptors = 0;
|
||||
|
||||
/* We expect to pick only one intro point from the node above. */
|
||||
setup_full_capture_of_logs(LOG_INFO);
|
||||
update_all_descriptors(now);
|
||||
|
Loading…
Reference in New Issue
Block a user