- Fix a memory leak on exit relays; we were leaking a cached_resolve_t
on every successful resolve. Reported by Mike Perry.
- o Minor features:
- - Allow people to say PreferTunnelledDirConns rather than
- PreferTunneledDirConns, for those alternate-spellers out there.
-
o Packaging fixes on 0.2.0.10-alpha:
- We were including instructions about what to do with the
src/config/fallback-consensus file, but we weren't actually
including it in the tarball. Disable all of that for now.
+ o Minor features:
+ - Allow people to say PreferTunnelledDirConns rather than
+ PreferTunneledDirConns, for those alternate-spellers out there.
+
+ o Minor bugfixes:
+ - Don't reevaluate all the information from our consensus document
+ just because we've downloaded a v2 networkstatus that we intend
+ to cache. Fixes bug 545.
+
Changes in version 0.2.0.10-alpha - 2007-11-10
o New directory authorities:
} else
break;
}
- routers_update_all_from_networkstatus(now); /*launches router downloads*/
+ /* launches router downloads as needed */
+ routers_update_all_from_networkstatus(now, 2);
directory_info_has_arrived(now, 0);
if (which) {
if (smartlist_len(which)) {
networkstatus_consensus_download_failed(0);
return -1;
}
- routers_update_all_from_networkstatus(now); /*launches router downloads*/
+ /* launches router downloads as needed */
+ routers_update_all_from_networkstatus(now, 3);
directory_info_has_arrived(now, 0);
log_info(LD_DIR, "Successfully loaded consensus.");
}
SMARTLIST_FOREACH(entries, char *, fn, tor_free(fn));
smartlist_free(entries);
networkstatus_v2_list_clean(time(NULL));
- routers_update_all_from_networkstatus(time(NULL));
+ routers_update_all_from_networkstatus(time(NULL), 2);
return 0;
}
}
}
- routers_update_all_from_networkstatus(time(NULL));
+ routers_update_all_from_networkstatus(time(NULL), 3);
return 0;
}
/** If the network-status list has changed since the last time we called this
* function, update the status of every routerinfo from the network-status
- * list.
+ * list. If <b>dir_version</b> is 2, it's a v2 networkstatus that changed.
+ * If <b>dir_version</b> is 3, it's a v3 consensus that changed.
*/
void
-routers_update_all_from_networkstatus(time_t now)
+routers_update_all_from_networkstatus(time_t now, int dir_version)
{
routerinfo_t *me;
routerlist_t *rl = router_get_routerlist();
if (networkstatus_v2_list_has_changed)
download_status_map_update_from_v2_networkstatus();
- if (!consensus)
+ if (!consensus || dir_version < 3) /* nothing more we should do */
return;
/* More routers may be up or down now: we need to recalc whether there's
int networkstatus_set_current_consensus(const char *consensus, int from_cache,
int was_waiting_for_certs);
void networkstatus_note_certs_arrived(void);
-void routers_update_all_from_networkstatus(time_t now);
+void routers_update_all_from_networkstatus(time_t now, dir_version);
void routerstatus_list_update_from_consensus_networkstatus(time_t now);
void routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
int reset_failures);
if (!consensus) {
if (!networkstatus_get_latest_consensus())
- strlcpy(dir_info_status, "We have no network-status document.",
+ strlcpy(dir_info_status, "We have no network-status consensus.",
sizeof(dir_info_status));
else
- strlcpy(dir_info_status, "We have no recent network-status document.",
+ strlcpy(dir_info_status, "We have no recent network-status consensus.",
sizeof(dir_info_status));
res = 0;
goto done;