diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2013-02-04 16:59:28 -0800 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-07 14:30:58 -0500 |
commit | b03553737cdfa460d33a425a53908c83fe871ec4 (patch) | |
tree | 17a17b13f2f6c4cbd8e1c72d238d0ee0396179d9 /src/or/entrynodes.h | |
parent | 2b68a06618433b8c9ddf68d2d0e78625ad8cc204 (diff) | |
download | tor-b03553737cdfa460d33a425a53908c83fe871ec4.tar.gz tor-b03553737cdfa460d33a425a53908c83fe871ec4.zip |
Separate the flags for logging use bias.
I think we want both sets of messages to appear independently to help us know
what needs tuning.
Diffstat (limited to 'src/or/entrynodes.h')
-rw-r--r-- | src/or/entrynodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/entrynodes.h b/src/or/entrynodes.h index e6c973c95a..b673d02681 100644 --- a/src/or/entrynodes.h +++ b/src/or/entrynodes.h @@ -39,6 +39,10 @@ typedef struct entry_guard_t { * bias for this node already? */ unsigned int path_bias_disabled : 1; /**< Have we disabled this node because * of path bias issues? */ + unsigned int path_bias_use_noticed : 1; /**< Did we alert the user about path + * use bias for this node already? */ + unsigned int path_bias_use_extreme : 1; /**< Did we alert the user about path + * use bias for this node already? */ unsigned int is_dir_cache : 1; /**< Is this node a directory cache? */ time_t bad_since; /**< 0 if this guard is currently usable, or the time at * which it was observed to become (according to the |