diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-22 10:21:13 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-09-26 10:56:53 -0700 |
commit | 1ab641a70e1f2cc2548abfd03e62e3f8b04825d2 (patch) | |
tree | 2a0f5cdce457b13001bf9369ae26e284185b8d94 /src/or/or.h | |
parent | f3382bd7223a3e5c0e6f1c32dc7d9e8a2d28fb36 (diff) | |
download | tor-1ab641a70e1f2cc2548abfd03e62e3f8b04825d2.tar.gz tor-1ab641a70e1f2cc2548abfd03e62e3f8b04825d2.zip |
Remove version_known, and subtly change the meaning of protocols_known
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/or/or.h b/src/or/or.h index befbf716af..7c7163f035 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2193,12 +2193,8 @@ typedef struct routerstatus_t { unsigned int is_v2_dir:1; /** True iff this router publishes an open DirPort * or it claims to accept tunnelled dir requests. */ - /** True iff we know version info for this router. (i.e., a "v" entry was - * 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 we have a proto line for this router.*/ + /** True iff we have a proto line for this router, or a versions line + * from which we could infer the protocols. */ unsigned int protocols_known:1; /** True iff this router has a version or protocol list that allows it to |