aboutsummaryrefslogtreecommitdiff
path: root/src/or/microdesc.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2010-11-08 14:21:32 -0500
committerNick Mathewson <nickm@torproject.org>2011-05-05 20:54:12 -0400
commit4cc348e896f74a4e02ef15a77d22fc636b08afae (patch)
treeb83bf38177b446230ee78363155a804bb4ede10f /src/or/microdesc.h
parent3df22887a3028318dc34a45984a8a195dfc0c026 (diff)
downloadtor-4cc348e896f74a4e02ef15a77d22fc636b08afae.tar.gz
tor-4cc348e896f74a4e02ef15a77d22fc636b08afae.zip
Code to make clients fetch and use microdescriptors for circuit building
To turn this on, set UseMicrodescriptors to "1" (or "auto" if you want it on-if-you're-a-client). It should go auto-by-default once 0.2.3.1-alpha is released. Because of our node logic, directory caches will never use microdescriptors when they have the right routerinfo available.
Diffstat (limited to 'src/or/microdesc.h')
-rw-r--r--src/or/microdesc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/microdesc.h b/src/or/microdesc.h
index c967742aa3..94b1ff6f85 100644
--- a/src/or/microdesc.h
+++ b/src/or/microdesc.h
@@ -43,5 +43,10 @@ void microdesc_free_all(void);
void update_microdesc_downloads(time_t now);
void update_microdescs_from_networkstatus(time_t now);
+int usable_consensus_flavor(void);
+int we_fetch_microdescriptors(or_options_t *options);
+int we_fetch_router_descriptors(or_options_t *options);
+int we_use_microdescriptors_for_circuits(or_options_t *options);
+
#endif