diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2014-09-05 01:49:47 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-09 11:54:20 -0400 |
commit | 409a56281eda6e0f39ecb1a2737eb4ab39b0229b (patch) | |
tree | a6e0c58a7c850fc44086cff029b9325859cd4cc6 /src/or/or.h | |
parent | 8099dee99234519a76580bb9ae479a878b7a45e0 (diff) | |
download | tor-409a56281eda6e0f39ecb1a2737eb4ab39b0229b.tar.gz tor-409a56281eda6e0f39ecb1a2737eb4ab39b0229b.zip |
Remove client-side bad directory logic
Implements the second half of #13060.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/or/or.h b/src/or/or.h index 6ef71e9c57..06d4e3c926 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2139,8 +2139,6 @@ typedef struct routerstatus_t { * choice as an entry guard. */ unsigned int is_bad_exit:1; /**< True iff this node is a bad choice for * 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 v2-or-later hidden * service directory. */ /** True iff we know version info for this router. (i.e., a "v" entry was @@ -2300,8 +2298,6 @@ typedef struct node_t { unsigned int is_exit:1; /**< Do we think this is an OK exit? */ unsigned int is_bad_exit:1; /**< Do we think this exit is censored, borked, * or otherwise nasty? */ - 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 according to the authorities. */ |