diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-18 20:06:48 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-08 16:47:56 -0500 |
commit | ef5158b2d2f67a1d70e6194b0fde291f853d485e (patch) | |
tree | 62c77b66817ed2bd0b871760b8acce2d663ec90d /src/or/channeltls.c | |
parent | e054211237e88cace9f7d7ff403600c192df9a31 (diff) | |
download | tor-ef5158b2d2f67a1d70e6194b0fde291f853d485e.tar.gz tor-ef5158b2d2f67a1d70e6194b0fde291f853d485e.zip |
When attempting to find a channel by ID, consider Ed ID.
Right now, there's only a mechanism to look for a channel where the
RSA ID matches *and* the ED ID matches. We can add a separate map
later if we want.
Diffstat (limited to 'src/or/channeltls.c')
-rw-r--r-- | src/or/channeltls.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/or/channeltls.c b/src/or/channeltls.c index 9fb309d0fd..8384576e68 100644 --- a/src/or/channeltls.c +++ b/src/or/channeltls.c @@ -174,7 +174,6 @@ channel_tls_connect(const tor_addr_t *addr, uint16_t port, const char *id_digest, const ed25519_public_key_t *ed_id) { - (void) ed_id; // XXXX not fully used yet channel_tls_t *tlschan = tor_malloc_zero(sizeof(*tlschan)); channel_t *chan = &(tlschan->base_); |