diff options
author | Roger Dingledine <arma@torproject.org> | 2007-11-16 07:29:01 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-11-16 07:29:01 +0000 |
commit | 116a0f0f22eef6cb77a81fcfc9abb0a875e8b69f (patch) | |
tree | f1cf5bda57cbb59d10c47b37c9d9e397ac35d2b1 | |
parent | 0e442e098ca1eaabe0d60aa34e95a8c97fa2f5f2 (diff) | |
download | tor-116a0f0f22eef6cb77a81fcfc9abb0a875e8b69f.tar.gz tor-116a0f0f22eef6cb77a81fcfc9abb0a875e8b69f.zip |
minor touchups on or.h
svn:r12511
-rw-r--r-- | src/or/or.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/or.h b/src/or/or.h index a87d95ed7a..9c23b9ce69 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1330,7 +1330,7 @@ typedef struct routerstatus_t { unsigned int is_named:1; /**< True iff "nickname" belongs to this router. */ unsigned int is_unnamed:1; /**< True iff "nickname" belongs to another * router. */ - unsigned int is_valid:1; /**< True iff this router is validated. */ + unsigned int is_valid:1; /**< True iff this router isn't invalid. */ unsigned int is_v2_dir:1; /**< True iff this router can serve directory * information with v2 of the directory * protocol. (All directory caches cache v1 @@ -1341,8 +1341,8 @@ typedef struct routerstatus_t { * an exit node. */ unsigned int is_bad_directory:1; /**< Do we think this directory is junky, * underpowered, or otherwise useless? */ - unsigned int is_hs_dir:1; /** True iff this router is a hidden service - * directory. */ + unsigned int is_hs_dir:1; /** True iff this router is a v2-or-later hidden + * service directory. */ /** 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. */ |