diff options
author | Roger Dingledine <arma@torproject.org> | 2010-09-23 22:41:01 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-09-28 19:10:23 -0400 |
commit | bb22360bad4d19483ff488c9e4a0eae8616fcd81 (patch) | |
tree | 005c37780ec6ac7f0702e223f2a28ed71c25aea1 /src/or/circuitbuild.h | |
parent | 8bac1885729ba995397f673575ed58bbb0d698a8 (diff) | |
download | tor-bb22360bad4d19483ff488c9e4a0eae8616fcd81.tar.gz tor-bb22360bad4d19483ff488c9e4a0eae8616fcd81.zip |
optimistically retry EntryNodes on socks request
We used to mark all our known bridges up when they're all down and we
get a new socks request. Now do that when we've set EntryNodes too.
Diffstat (limited to 'src/or/circuitbuild.h')
-rw-r--r-- | src/or/circuitbuild.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitbuild.h b/src/or/circuitbuild.h index 6cc461c98d..033dd79c4c 100644 --- a/src/or/circuitbuild.h +++ b/src/or/circuitbuild.h @@ -72,8 +72,8 @@ void fetch_bridge_descriptors(or_options_t *options, time_t now); void learned_bridge_descriptor(routerinfo_t *ri, int from_cache); int any_bridge_descriptors_known(void); int any_pending_bridge_descriptor_fetches(void); -int bridges_known_but_down(void); -void bridges_retry_all(void); +int entries_known_but_down(or_options_t *options); +void entries_retry_all(or_options_t *options); void entry_guards_free_all(void); |