diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-09-10 15:37:13 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-09-10 15:37:13 -0400 |
commit | bf71866da006820a2345d8257f208d8147707daf (patch) | |
tree | bc53b2a89919e9a9d3a15b3ee5ff1bcf889edaf9 /src/or/or.h | |
parent | 4319f998283d33af61b1855b7fa287fa93113dbd (diff) | |
parent | e8b09c0d51598d079b577b3bcbcb234f82b7ca43 (diff) | |
download | tor-bf71866da006820a2345d8257f208d8147707daf.tar.gz tor-bf71866da006820a2345d8257f208d8147707daf.zip |
Merge branch 'remove_old_ver_checks'
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/or/or.h b/src/or/or.h index ec27184c1d..788179bacc 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1854,16 +1854,7 @@ typedef struct routerstatus_t { * included.) We'll replace all these with a big tor_version_t or a char[] * if the number of traits we care about ever becomes incredibly big. */ unsigned int version_known:1; - /** True iff this router is a version that supports BEGIN_DIR cells. */ - unsigned int version_supports_begindir:1; - /** True iff this router is a version that supports conditional consensus - * downloads (signed by list of authorities). */ - unsigned int version_supports_conditional_consensus:1; - /** True iff this router is a version that we can post extrainfo docs to. */ - unsigned int version_supports_extrainfo_upload:1; - /** True iff this router is a version that, if it caches directory info, - * we can get v3 downloads from. */ - unsigned int version_supports_v3_dir:1; + /** True iff this router is a version that, if it caches directory info, * we can get microdescriptors from. */ unsigned int version_supports_microdesc_cache:1; |