diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-09-07 23:21:18 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-09-07 23:21:18 -0400 |
commit | 7988596f66874fd36d1c99bf39736e4b41609a6b (patch) | |
tree | 8bdd66158567b2102cfbd6b4f84c536b2efb7c7a /src/or/or.h | |
parent | 2cde6658b5998561e9e8a9377976db87690a2387 (diff) | |
download | tor-7988596f66874fd36d1c99bf39736e4b41609a6b.tar.gz tor-7988596f66874fd36d1c99bf39736e4b41609a6b.zip |
Remove version_supports checks for versions before 0.2.2.
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 3609d32b77..5bc4409cc1 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; |