aboutsummaryrefslogtreecommitdiff
path: root/src/or/or.h
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2012-04-01 15:59:38 -0400
committerRoger Dingledine <arma@torproject.org>2012-04-01 15:59:38 -0400
commit5fed1ccd901d4751a3fed7dc01042771ca76f449 (patch)
tree75f46ddd04814a3e74b754236c262b5157ec49b7 /src/or/or.h
parent40ab832c4e61bfddd26915e6208137b43329ae86 (diff)
downloadtor-5fed1ccd901d4751a3fed7dc01042771ca76f449.tar
tor-5fed1ccd901d4751a3fed7dc01042771ca76f449.tar.gz
put a _ before or_options_t elements that aren't configurable
it's fine with me if we change the current convention, but we should actually decide to change it if we want to.
Diffstat (limited to 'src/or/or.h')
-rw-r--r--src/or/or.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h
index 92592e5fa..a4e8e4985 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -2492,8 +2492,8 @@ typedef struct {
* for bridge statuses -- but only if the requests use this password. */
char *BridgePassword;
/** If BridgePassword is set, this is a SHA256 digest of the basic http
- * authenticator for it. */
- char *BridgePassword_AuthDigest;
+ * authenticator for it. Used so we can do a time-independent comparison. */
+ char *_BridgePassword_AuthDigest;
int UseBridges; /**< Boolean: should we start all circuits with a bridge? */
config_line_t *Bridges; /**< List of bootstrap bridge addresses. */