summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-06-28 15:10:38 -0400
committerNick Mathewson <nickm@torproject.org>2011-07-11 16:13:17 -0400
commite253e9577fb7d76bd534b343f0f63559b9a47b4a (patch)
tree138c478575d0b6f11eb928f64878d7de5245d33b
parent3f97c665aa8b0fee06b22160e3c10ef7d896618d (diff)
downloadtor-e253e9577fb7d76bd534b343f0f63559b9a47b4a.tar.gz
tor-e253e9577fb7d76bd534b343f0f63559b9a47b4a.zip
Clear broken connection map on successful bootstrap
-rw-r--r--src/or/circuitbuild.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index fa7519d664..6a411d1945 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -2117,6 +2117,7 @@ circuit_send_next_onion_skin(origin_circuit_t *circ)
"Looks like client functionality is working.");
control_event_bootstrap(BOOTSTRAP_STATUS_DONE, 0);
control_event_client_status(LOG_NOTICE, "CIRCUIT_ESTABLISHED");
+ clear_broken_connection_map();
if (server_mode(options) && !check_whether_orport_reachable()) {
inform_testing_reachability();
consider_testing_reachability(1, 1);