diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-09-11 20:17:28 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-09-11 20:17:28 +0000 |
commit | e73fb2f102c714b96436d594a298566c6e8393f6 (patch) | |
tree | 058bc89abadea3586fa965b689979a553392c191 /src/or/or.h | |
parent | 4de4f53abd0d5dc5b39e4756b777e71ea846992d (diff) | |
download | tor-e73fb2f102c714b96436d594a298566c6e8393f6.tar.gz tor-e73fb2f102c714b96436d594a298566c6e8393f6.zip |
r15049@catbus: nickm | 2007-09-11 16:05:50 -0400
When we get a consensus for which we are missing the right certificates, keep it around pending more certificates; do not just drop it.
svn:r11430
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 24a3f9d4be..3a30e36254 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3550,7 +3550,8 @@ local_routerstatus_t *router_get_combined_status_by_descriptor_digest( int router_reload_consensus_networkstatus(void); networkstatus_vote_t *networkstatus_get_latest_consensus(void); networkstatus_vote_t *networkstatus_get_live_consensus(time_t now); -int networkstatus_set_current_consensus(const char *consensus, int from_cache); +int networkstatus_set_current_consensus(const char *consensus, int from_cache, + int was_waiting_for_certs); //routerstatus_t *routerstatus_get_by_hexdigest(const char *hexdigest); int should_delay_dir_fetches(or_options_t *options); |