aboutsummaryrefslogtreecommitdiff
path: root/src/or/router.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-12-06 01:53:29 -0500
committerNick Mathewson <nickm@torproject.org>2013-01-03 11:29:47 -0500
commitb2863739083125d332cf1166ae6b095df7d0f155 (patch)
tree44e6a25866048d143b1e739a46528823306ff9e7 /src/or/router.c
parentecf88b16b8672c8b734d13d84910e97357c470a8 (diff)
downloadtor-b2863739083125d332cf1166ae6b095df7d0f155.tar.gz
tor-b2863739083125d332cf1166ae6b095df7d0f155.zip
Enable the ntor handshake on the client side.
"works for me"
Diffstat (limited to 'src/or/router.c')
-rw-r--r--src/or/router.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c
index 3733bec4d0..a97db858b0 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -1071,7 +1071,8 @@ extend_info_from_router(const routerinfo_t *r)
router_get_prim_orport(r, &ap);
return extend_info_new(r->nickname, r->cache_info.identity_digest,
- r->onion_pkey, &ap.addr, ap.port);
+ r->onion_pkey, r->onion_curve25519_pkey,
+ &ap.addr, ap.port);
}
/** Some time has passed, or we just got new directory information.