diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2012-10-24 18:15:41 -0700 |
---|---|---|
committer | Mike Perry <mikeperry-git@fscked.org> | 2012-12-07 15:28:37 -0800 |
commit | 9bf5582e7368bf91e2b9bf9e88ee71d2ba51a335 (patch) | |
tree | eefec6e9be1d915bcae9dea6876d56a11e681414 /src/or/entrynodes.h | |
parent | 248fbc3619664e1d9f4b16732ccbdb484939624d (diff) | |
download | tor-9bf5582e7368bf91e2b9bf9e88ee71d2ba51a335.tar.gz tor-9bf5582e7368bf91e2b9bf9e88ee71d2ba51a335.zip |
Add log message checks for different rates.
May want to squash this forward or back..
Diffstat (limited to 'src/or/entrynodes.h')
-rw-r--r-- | src/or/entrynodes.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/or/entrynodes.h b/src/or/entrynodes.h index b34744183c..6fdb3f7585 100644 --- a/src/or/entrynodes.h +++ b/src/or/entrynodes.h @@ -31,7 +31,11 @@ typedef struct entry_guard_t { * router, 1 if we have. */ unsigned int can_retry : 1; /**< Should we retry connecting to this entry, * in spite of having it marked as unreachable?*/ - unsigned int path_bias_notice : 1; /**< Did we alert the user about path bias + unsigned int path_bias_noticed : 1; /**< Did we alert the user about path bias + * for this node already? */ + unsigned int path_bias_warned : 1; /**< Did we alert the user about path bias + * for this node already? */ + unsigned int path_bias_crited : 1; /**< Did we alert the user about path bias * for this node already? */ unsigned int path_bias_disabled : 1; /**< Have we disabled this node because * of path bias issues? */ |