aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuitlist.c
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2017-07-25 12:17:20 +0300
committerDavid Goulet <dgoulet@torproject.org>2017-08-24 13:03:28 -0400
commit379ad6f6eb5393e74daba8ac71c252155c052a34 (patch)
treebc5e1a5d8ba7d16f618e783cc907082d58a17cbb /src/or/circuitlist.c
parent3152c583af052571cbcd058bb1569f2ad821ec42 (diff)
downloadtor-379ad6f6eb5393e74daba8ac71c252155c052a34.tar.gz
tor-379ad6f6eb5393e74daba8ac71c252155c052a34.zip
prop224: Use the client-side circuitmap in hs_client.c
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r--src/or/circuitlist.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index c2d947beae..d891c89f38 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -1498,33 +1498,6 @@ circuit_get_ready_rend_circ_by_rend_data(const rend_data_t *rend_data)
return NULL;
}
-/* Return an origin circuit such that:
- * - Identifier identity key matches,
- * - Rendezvous cookie matches
- * - Circuit is not marked for close
- * - Circuit has purpose CIRCUIT_PURPOSE_C_REND_READY.
- *
- * Return NULL if no such circuit exits. */
-origin_circuit_t *
-circuit_get_ready_rend_by_hs_ident(const hs_ident_circuit_t *ident)
-{
- SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) {
- if (!circ->marked_for_close &&
- circ->purpose == CIRCUIT_PURPOSE_C_REND_READY) {
- origin_circuit_t *ocirc = TO_ORIGIN_CIRCUIT(circ);
- if (ocirc->hs_ident &&
- ed25519_pubkey_eq(&ident->identity_pk,
- &ocirc->hs_ident->identity_pk) &&
- tor_memeq(ident->rendezvous_cookie,
- ocirc->hs_ident->rendezvous_cookie,
- HS_REND_COOKIE_LEN)) {
- return ocirc;
- }
- }
- } SMARTLIST_FOREACH_END(circ);
- return NULL;
-}
-
/** Return the first service introduction circuit originating from the global
* circuit list after <b>start</b> or at the start of the list if <b>start</b>
* is NULL. Return NULL if no circuit is found.