diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-02-15 21:00:10 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-02-15 21:00:10 -0500 |
commit | d9804691dfb507623d3c4bec56235ff7171ca17b (patch) | |
tree | f6d7bc8463dea1feb28815f12a0475b6c5e24b54 /src/or/circuitbuild.c | |
parent | 92a42f795ce09f3d846acfb1a70100adbcd32681 (diff) | |
parent | 3dd2c1d02298280938cec9022c23a64f6b53aae5 (diff) | |
download | tor-d9804691dfb507623d3c4bec56235ff7171ca17b.tar.gz tor-d9804691dfb507623d3c4bec56235ff7171ca17b.zip |
Merge remote-tracking branch 'ffmancera-1/bug18918'
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 8fe6ba0e60..6d6fd033b9 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1055,7 +1055,7 @@ circuit_build_no_more_hops(origin_circuit_t *circ) clear_broken_connection_map(1); if (server_mode(options) && !check_whether_orport_reachable(options)) { inform_testing_reachability(); - consider_testing_reachability(1, 1); + router_do_reachability_checks(1, 1); } } @@ -1611,7 +1611,7 @@ onionskin_answer(or_circuit_t *circ, * rend_service_launch_establish_intro()) * * - We are a router testing its own reachabiity - * (CIRCUIT_PURPOSE_TESTING, via consider_testing_reachability()) + * (CIRCUIT_PURPOSE_TESTING, via router_do_reachability_checks()) * * onion_pick_cpath_exit() bypasses us (by not calling * new_route_len()) in the one-hop tunnel case, so we don't need to |