minor cleanups

svn:r9387
This commit is contained in:
Roger Dingledine
2007-01-22 19:20:33 +00:00
parent 36620ca056
commit 9f733c31cc
8 changed files with 36 additions and 23 deletions
+5 -3
View File
@@ -649,15 +649,17 @@ circuit_send_next_onion_skin(origin_circuit_t *circ)
return 0;
}
/** Our clock just jumped forward by <b>seconds_elapsed</b>. Assume
/** Our clock just jumped by <b>seconds_elapsed</b>. Assume
* something has also gone wrong with our network: notify the user,
* and abandon all not-yet-used circuits. */
void
circuit_note_clock_jumped(int seconds_elapsed)
{
int severity = server_mode(get_options()) ? LOG_WARN : LOG_NOTICE;
log(severity, LD_GENERAL, "Your clock just jumped %d seconds forward; "
"assuming established circuits no longer work.", seconds_elapsed);
log(severity, LD_GENERAL, "Your clock just jumped %d seconds %s; "
"assuming established circuits no longer work.",
seconds_elapsed >=0 ? seconds_elapsed : -seconds_elapsed,
seconds_elapsed >=0 ? "forward" : "backward");
control_event_general_status(LOG_WARN, "CLOCK_JUMPED TIME=%d",
seconds_elapsed);
has_completed_circuit=0; /* so it'll log when it works again */
+1 -1
View File
@@ -321,7 +321,7 @@ dns_free_all(void)
if (cached_resolve_pqueue) {
SMARTLIST_FOREACH(cached_resolve_pqueue, cached_resolve_t *, res,
{
/* XXXX012 The hach lookups here could be quite slow; remove them
/* XXXX012 The hash lookups here could be quite slow; remove them
* once we're happy. */
if (res->state == CACHE_STATE_DONE) {
cached_resolve_t *removed = HT_REMOVE(cache_map, &cache_root, res);
+5 -2
View File
@@ -186,7 +186,7 @@ router_should_rebuild_store(void)
}
/** Add the <b>len</b>-type router descriptor in <b>s</b> to the router
* journal; change its saved_locatino to SAVED_IN_JOURNAL and set its
* journal; change its saved_location to SAVED_IN_JOURNAL and set its
* offset appropriately. */
static int
router_append_to_journal(signed_descriptor_t *desc)
@@ -1319,7 +1319,7 @@ router_get_by_descriptor_digest(const char *digest)
/** Return a pointer to the signed textual representation of a descriptor.
* The returned string is not guaranteed to be NUL-terminated: the string's
* length will be in desc->signed_descriptor_len. */
* length will be in desc-\>signed_descriptor_len. */
const char *
signed_descriptor_get_body(signed_descriptor_t *desc)
{
@@ -3719,6 +3719,9 @@ router_list_client_downloadable(void)
* a directory for "all descriptors."
* Otherwise, we ask for all descriptors that we think are different
* from what we have.
*
* DOCDOC The above comment doesn't match the behavior of the function.
* I guess one of them is wrong, and I guess it's the comment. -RD
*/
static void
update_router_descriptor_client_downloads(time_t now)