diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-06-28 14:14:04 +1000 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-06-28 14:14:04 +1000 |
commit | 812fd416eff4fa7326cbd4bd46ff0f5801b9034c (patch) | |
tree | d3474733faddd30196246feb8d9765712dc95cf1 | |
parent | 14b1c7a66e6d186a40da99da773a692ef48b603c (diff) | |
download | tor-812fd416eff4fa7326cbd4bd46ff0f5801b9034c.tar.gz tor-812fd416eff4fa7326cbd4bd46ff0f5801b9034c.zip |
Make it clear that fallbacks include authorities
Comment-only change
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index d49814f056..d7faf7882d 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1384,6 +1384,7 @@ router_get_trusteddirserver_by_digest(const char *digest) * key hashes to <b>digest</b>, or NULL if no such fallback is in the list of * fallback_dir_servers. (fallback_dir_servers is affected by the FallbackDir * and UseDefaultFallbackDirs torrc options.) + * The list of fallback directories includes the list of authorities. */ dir_server_t * router_get_fallback_dirserver_by_digest(const char *digest) @@ -1407,6 +1408,7 @@ router_get_fallback_dirserver_by_digest(const char *digest) * or 0 if no such fallback is in the list of fallback_dir_servers. * (fallback_dir_servers is affected by the FallbackDir and * UseDefaultFallbackDirs torrc options.) + * The list of fallback directories includes the list of authorities. */ int router_digest_is_fallback_dir(const char *digest) |