diff options
author | Roger Dingledine <arma@torproject.org> | 2014-09-21 19:04:18 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2014-09-21 19:04:18 -0400 |
commit | bbfb1aca55303c150ebb08e223a0d9a69bb5be26 (patch) | |
tree | 57a920e5a48c6a5931045542fac18142980aa7d5 /src/or/or.h | |
parent | 4c8b809b9619770e29aa3c5ab66b194f784a9e93 (diff) | |
download | tor-bbfb1aca55303c150ebb08e223a0d9a69bb5be26.tar.gz tor-bbfb1aca55303c150ebb08e223a0d9a69bb5be26.zip |
get rid of routerstatus->version_supports_optimistic_data
Clients are now willing to send optimistic circuit data (before they
receive a 'connected' cell) to relays of any version. We used to
only do it for relays running 0.2.3.1-alpha or later, but now all
relays are new enough.
Resolves ticket 13153.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/or/or.h b/src/or/or.h index ba7eeea9e6..b2b0d5f7ab 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2149,9 +2149,6 @@ typedef struct routerstatus_t { /** 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; - /** True iff this router is a version that allows DATA cells to arrive on - * a stream before it has sent a CONNECTED cell. */ - unsigned int version_supports_optimistic_data:1; /** True iff this router has a version that allows it to accept EXTEND2 * cells */ unsigned int version_supports_extend2_cells:1; |