diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-14 14:34:25 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-11-10 09:43:27 -0500 |
commit | b5e75ae7dd536f17f96179fc7744031131fb97b2 (patch) | |
tree | 3ee30b7013dd856e7d90a2db3b09b343cc32458e /src/or/circuituse.c | |
parent | 8406677a5e6db74bd593a7d43868054b54b147df (diff) | |
download | tor-b5e75ae7dd536f17f96179fc7744031131fb97b2.tar.gz tor-b5e75ae7dd536f17f96179fc7744031131fb97b2.zip |
Add an ed25519 identity to extend_info
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index ba7b75ff25..eda53b418c 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -2103,8 +2103,10 @@ circuit_get_open_circ_or_launch(entry_connection_t *conn, return -1; } extend_info = extend_info_new(conn->chosen_exit_name+1, - digest, NULL, NULL, &addr, - conn->socks_request->port); + digest, + NULL, /* Ed25519 ID 15056, add a workaround.*/ + NULL, NULL, /* onion keys */ + &addr, conn->socks_request->port); } else { /* ! (want_onehop && conn->chosen_exit_name[0] == '$') */ /* We will need an onion key for the router, and we * don't have one. Refuse or relax requirements. */ |