diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2014-09-05 01:37:25 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-09 11:54:15 -0400 |
commit | 8099dee99234519a76580bb9ae479a878b7a45e0 (patch) | |
tree | baef389c5733b45298bc66e3df08473cb5166d2d /src/or/or.h | |
parent | 59f3cce0dcddb98301d18d0cb4cb08c1619fa34c (diff) | |
download | tor-8099dee99234519a76580bb9ae479a878b7a45e0.tar.gz tor-8099dee99234519a76580bb9ae479a878b7a45e0.zip |
Remove dirauth support for the BadDirectory flag
Implements the first half of #13060. The second half will be to remove
client support, too.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/or/or.h b/src/or/or.h index 25a8b48187..6ef71e9c57 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3742,8 +3742,6 @@ typedef struct { config_line_t *NodeFamilies; /**< List of config lines for * node families */ smartlist_t *NodeFamilySets; /**< List of parsed NodeFamilies values. */ - config_line_t *AuthDirBadDir; /**< Address policy for descriptors to - * mark as bad dir mirrors. */ config_line_t *AuthDirBadExit; /**< Address policy for descriptors to * mark as bad exits. */ config_line_t *AuthDirReject; /**< Address policy for descriptors to @@ -3752,19 +3750,16 @@ typedef struct { * never mark as valid. */ /** @name AuthDir...CC * - * Lists of country codes to mark as BadDir, BadExit, or Invalid, or to + * Lists of country codes to mark as BadExit, or Invalid, or to * reject entirely. * * @{ */ - smartlist_t *AuthDirBadDirCCs; smartlist_t *AuthDirBadExitCCs; smartlist_t *AuthDirInvalidCCs; smartlist_t *AuthDirRejectCCs; /**@}*/ - int AuthDirListBadDirs; /**< True iff we should list bad dirs, - * and vote for all other dir mirrors as good. */ int AuthDirListBadExits; /**< True iff we should list bad exits, * and vote for all other exits as good. */ int AuthDirMaxServersPerAddr; /**< Do not permit more than this |