diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-09-02 16:42:18 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-09-02 16:46:03 -0400 |
commit | bfa1962d8026e632e00760c1e14b39d154977adf (patch) | |
tree | 218e96b860a5fa4fa1baae7e1e316309e6c7502f /src/or/routerlist.h | |
parent | 6f9f1f3324d49ffbe0a5275a268111882ba8851f (diff) | |
download | tor-bfa1962d8026e632e00760c1e14b39d154977adf.tar.gz tor-bfa1962d8026e632e00760c1e14b39d154977adf.zip |
Complicate the rules on WARN vs INFO in consensus verification
It's normal when bootstrapping to have a lot of different certs
missing, so we don't want missing certs to make us warn... unless
the certs we're missing are ones that we've tried to fetch a couple
of times and failed at.
May fix bug 1145.
Diffstat (limited to 'src/or/routerlist.h')
-rw-r--r-- | src/or/routerlist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/routerlist.h b/src/or/routerlist.h index e31b07aef5..e3e9ddd778 100644 --- a/src/or/routerlist.h +++ b/src/or/routerlist.h @@ -24,6 +24,7 @@ void authority_cert_get_all(smartlist_t *certs_out); void authority_cert_dl_failed(const char *id_digest, int status); void authority_certs_fetch_missing(networkstatus_t *status, time_t now); int router_reload_router_list(void); +int authority_cert_dl_looks_uncertain(const char *id_digest); smartlist_t *router_get_trusted_dir_servers(void); routerstatus_t *router_pick_directory_server(authority_type_t type, int flags); |