mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Correctly set entry->is_dir_cache when adding an entry guard for the first time
(Second part of a bug8367 fix. -NM)
This commit is contained in:
parent
ad49abe5a1
commit
74c33945e3
@ -381,6 +381,8 @@ add_an_entry_guard(const node_t *chosen, int reset_status, int prepend,
|
|||||||
memcpy(entry->identity, node->identity, DIGEST_LEN);
|
memcpy(entry->identity, node->identity, DIGEST_LEN);
|
||||||
entry->is_dir_cache = node_is_dir(node) &&
|
entry->is_dir_cache = node_is_dir(node) &&
|
||||||
node->rs && node->rs->version_supports_microdesc_cache;
|
node->rs && node->rs->version_supports_microdesc_cache;
|
||||||
|
if (get_options()->UseBridges && node_is_a_configured_bridge(node))
|
||||||
|
entry->is_dir_cache = 1;
|
||||||
|
|
||||||
/* Choose expiry time smudged over the past month. The goal here
|
/* Choose expiry time smudged over the past month. The goal here
|
||||||
* is to a) spread out when Tor clients rotate their guards, so they
|
* is to a) spread out when Tor clients rotate their guards, so they
|
||||||
|
Loading…
Reference in New Issue
Block a user