diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-24 11:25:48 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-08 16:47:58 -0500 |
commit | 6788418f28930467121537f31c4b43f981ae6ca8 (patch) | |
tree | a04045202309f715bdd0381ac5201fc9717edd20 /src/or/channel.h | |
parent | af3af494083f041c3ce9f722e4989ecd4b4e6304 (diff) | |
download | tor-6788418f28930467121537f31c4b43f981ae6ca8.tar.gz tor-6788418f28930467121537f31c4b43f981ae6ca8.zip |
Propagate Ed25519 identities downwards into more functions.
Actually set ed25519 identities on channels when we set a channel's
identity.
Diffstat (limited to 'src/or/channel.h')
-rw-r--r-- | src/or/channel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/channel.h b/src/or/channel.h index 3f0bb37af5..26aa93b5e2 100644 --- a/src/or/channel.h +++ b/src/or/channel.h @@ -443,7 +443,8 @@ void channel_mark_incoming(channel_t *chan); void channel_mark_outgoing(channel_t *chan); void channel_mark_remote(channel_t *chan); void channel_set_identity_digest(channel_t *chan, - const char *identity_digest); + const char *identity_digest, + const ed25519_public_key_t *ed_identity); void channel_set_remote_end(channel_t *chan, const char *identity_digest, const char *nickname); |