mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
simplify we_use_microdescriptors_for_circuits()
This commit is contained in:
+3
-6
@@ -917,12 +917,9 @@ update_microdescs_from_networkstatus(time_t now)
|
||||
int
|
||||
we_use_microdescriptors_for_circuits(const or_options_t *options)
|
||||
{
|
||||
int ret = options->UseMicrodescriptors;
|
||||
if (ret == -1) {
|
||||
/* UseMicrodescriptors is "auto"; choose yes. */
|
||||
return 1;
|
||||
}
|
||||
return ret;
|
||||
if (options->UseMicrodescriptors == 0)
|
||||
return 0; /* the user explicitly picked no */
|
||||
return 1; /* yes and auto both mean yes */
|
||||
}
|
||||
|
||||
/** Return true iff we should try to download microdescriptors at all. */
|
||||
|
||||
Reference in New Issue
Block a user