diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-10-04 16:21:58 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-10-04 16:21:58 +0000 |
commit | 6f7847b378a67ad29cdeb9a3c1304de474bf46c0 (patch) | |
tree | 8f7b10020d50f6a3175a7c9e076da649c357641f /src/or/dirvote.c | |
parent | cc7e0f62b512f4b9446ba3ef2cdb702ee14ad82f (diff) | |
download | tor-6f7847b378a67ad29cdeb9a3c1304de474bf46c0.tar.gz tor-6f7847b378a67ad29cdeb9a3c1304de474bf46c0.zip |
r15530@catbus: nickm | 2007-10-04 12:16:27 -0400
Add a bunch of function documentation; clean up a little code; fix some XXXXs; tag the nonsensical EXTRAINFO_PURPOSE_GENERAL as nonsesnse; note another bit of "do not cache special routers" code to nuke.
svn:r11761
Diffstat (limited to 'src/or/dirvote.c')
-rw-r--r-- | src/or/dirvote.c | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c index b3f042cd8b..1609c1b612 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -1048,25 +1048,26 @@ dirvote_get_start_of_next_interval(time_t now, int interval) static struct { /** When do we generate and distribute our vote for this interval? */ time_t voting_starts; - /** DOCDOC */ + /** When do we send an HTTP request for any votes that we haven't + * been posted yet?*/ time_t fetch_missing_votes; /** When do we give up on getting more votes and generate a consensus? */ time_t voting_ends; - /** DOCDOC */ + /** When do we send an HTTP request for any signatures we're expecting to + * see on the consensus? */ time_t fetch_missing_signatures; /** When do we publish the consensus? */ time_t interval_starts; - /** When do we discard old votes and pending detached signatures? */ time_t discard_old_votes; /* True iff we have generated and distributed our vote. */ int have_voted; - /* DOCDOC */ + /* True iff we've requested missing votes. */ int have_fetched_missing_votes; /* True iff we have built a consensus and sent the signatures around. */ int have_built_consensus; - /* DOCDOC */ + /* True iff we've fetched missing signatures. */ int have_fetched_missing_signatures; /* True iff we have published our consensus. */ int have_published_consensus; @@ -1220,7 +1221,9 @@ dirvote_perform_vote(void) log_notice(LD_DIR, "Vote posted."); } -/** DOCDOC */ +/** Send an HTTP request to every other v3 authority, for the votes of every + * authority for which we haven't received a vote yet in this period. (V3 + * authority only) */ static void dirvote_fetch_missing_votes(void) { @@ -1254,7 +1257,8 @@ dirvote_fetch_missing_votes(void) smartlist_free(missing_fps); } -/** DOCDOC */ +/** Send a request to every other authority for its detached signatures, + * unless we have signatures from all other v3 authorities already. */ static void dirvote_fetch_missing_signatures(void) { @@ -1722,10 +1726,14 @@ dirvote_get_pending_detached_signatures(void) return pending_consensus_signatures; } -/** Return the vote for the authority with the v3 authority identity key - * digest <b>id</b>. If <b>id</b> is NULL, return our own vote. May return - * NULL if we have no vote for the authority in question. - * DOCDOC args */ +/** Return a given vote specified by <b>fp</b>. If <b>by_id</b>, return the + * vote for the authority with the v3 authority identity key digest <b>fp</b>; + * if <b>by_id</b> is false, return the vote whose digest is <b>fp</b>. If + * <b>fp</b> is NULL, return our own vote. If <b>include_previous</b> is + * false, do not consider any votes for a consensus that's already been built. + * If <b>include_pending</b> is false, do not consider any votes for the + * consensus that's in progress. May return NULL if we have no vote for the + * authority in question. */ const cached_dir_t * dirvote_get_vote(const char *fp, int by_id, int include_previous, int include_pending) |