diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-02-07 12:46:27 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-02-07 12:46:27 -0500 |
commit | 12b58ba551311db26ef6d769a5ee6eee9c294e01 (patch) | |
tree | e363e6e4d5521ea9215ec913cfa204b0efeef40a /src/or/circuitbuild.c | |
parent | a7440d9c9df1141a5ff52c1358bc28a8bb27bea3 (diff) | |
parent | 93ebcc2b8f8f22f2628cf74cc92674c8fbeb7b9a (diff) | |
download | tor-12b58ba551311db26ef6d769a5ee6eee9c294e01.tar.gz tor-12b58ba551311db26ef6d769a5ee6eee9c294e01.zip |
Merge remote-tracking branch 'dgoulet/ticket25163_033_01'
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 3bbcc5144c..8fe6ba0e60 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -347,45 +347,6 @@ circuit_log_path(int severity, unsigned int domain, origin_circuit_t *circ) tor_free(s); } -/** Tell the rep(utation)hist(ory) module about the status of the links - * in <b>circ</b>. Hops that have become OPEN are marked as successfully - * extended; the _first_ hop that isn't open (if any) is marked as - * unable to extend. - */ -/* XXXX Someday we should learn from OR circuits too. */ -void -circuit_rep_hist_note_result(origin_circuit_t *circ) -{ - crypt_path_t *hop; - const char *prev_digest = NULL; - hop = circ->cpath; - if (!hop) /* circuit hasn't started building yet. */ - return; - if (server_mode(get_options())) { - const routerinfo_t *me = router_get_my_routerinfo(); - if (!me) - return; - prev_digest = me->cache_info.identity_digest; - } - do { - const node_t *node = node_get_by_id(hop->extend_info->identity_digest); - if (node) { /* Why do we check this? We know the identity. -NM XXXX */ - if (prev_digest) { - if (hop->state == CPATH_STATE_OPEN) - rep_hist_note_extend_succeeded(prev_digest, node->identity); - else { - rep_hist_note_extend_failed(prev_digest, node->identity); - break; - } - } - prev_digest = node->identity; - } else { - prev_digest = NULL; - } - hop=hop->next; - } while (hop!=circ->cpath); -} - /** Return 1 iff every node in circ's cpath definitely supports ntor. */ static int circuit_cpath_supports_ntor(const origin_circuit_t *circ) @@ -1075,7 +1036,6 @@ circuit_build_no_more_hops(origin_circuit_t *circ) } pathbias_count_build_success(circ); - circuit_rep_hist_note_result(circ); if (is_usable_for_streams) circuit_has_opened(circ); /* do other actions as necessary */ |