diff options
author | David Goulet <dgoulet@torproject.org> | 2017-11-21 15:13:20 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-11-22 15:50:13 -0500 |
commit | 1dc4f96d9c630aa562a15958b29848a25b458c84 (patch) | |
tree | 340743675e3bf446244d9ee26acad9ee42337aea /src/or/channel.h | |
parent | 163477b11eae5cebbf5b4298871838f618b50bd5 (diff) | |
download | tor-1dc4f96d9c630aa562a15958b29848a25b458c84.tar.gz tor-1dc4f96d9c630aa562a15958b29848a25b458c84.zip |
channel: Remove nickname attribute from channel_t
This was never set thus never could have been used. Get rid of it to simplify
the code.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/channel.h')
-rw-r--r-- | src/or/channel.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/or/channel.h b/src/or/channel.h index 1dc378b3dc..5a2457faf0 100644 --- a/src/or/channel.h +++ b/src/or/channel.h @@ -255,9 +255,6 @@ struct channel_s { */ ed25519_public_key_t ed25519_identity; - /** Nickname of the OR on the other side, or NULL if none. */ - char *nickname; - /** * Linked list of channels with the same RSA identity digest, for use with * the digest->channel map |