Tolerate a slightly dead consensus when deciding whether to download descriptors and build circuits.
svn:r12167
consensus that we already have (or one that isn't valid) as a failure,
and count failing to get the certificates after 20 minutes as a
failure.
+ - Build circuits and download descriptors even if our consensus is a
+ little expired. (This feature will go away once authorities are more
+ reliable.)
o Minor features (router descriptor cache):
- If we find a cached-routers file that's been sitting around for more
return NULL;
}
+/* XXXX020 remove this in favor of get_live_consensus. */
+networkstatus_vote_t *
+networkstatus_get_reasonably_live_consensus(time_t now)
+{
+#define REASONABLY_LIVE_TIME (24*60*60)
+ if (current_consensus &&
+ current_consensus->valid_after <= now+REASONABLY_LIVE_TIME &&
+ now <= current_consensus->valid_until)
+ return current_consensus;
+ else
+ return NULL;
+}
+
/** Copy all the ancillary information (like router download status and so on)
* from <b>old_c</b> to <b>new_c</b>. */
static void
networkstatus_v2_t *networkstatus_v2_get_by_digest(const char *digest);
networkstatus_vote_t *networkstatus_get_latest_consensus(void);
networkstatus_vote_t *networkstatus_get_live_consensus(time_t now);
+networkstatus_vote_t *networkstatus_get_reasonably_live_consensus(time_t now);
int networkstatus_set_current_consensus(const char *consensus, int from_cache,
int was_waiting_for_certs);
void networkstatus_note_certs_arrived(void);
smartlist_t *downloadable = smartlist_create();
int authdir = authdir_mode(options);
int dirserver = dirserver_mode(options);
- networkstatus_vote_t *consensus = networkstatus_get_live_consensus(now);
+ networkstatus_vote_t *consensus =
+ networkstatus_get_reasonably_live_consensus(now);
int n_delayed=0, n_have=0, n_would_reject=0, n_wouldnt_use=0,
n_inprogress=0;
int res;
or_options_t *options = get_options();
const networkstatus_vote_t *consensus =
- networkstatus_get_live_consensus(now);
+ networkstatus_get_reasonably_live_consensus(now);
if (!consensus) {
res = 0;