diff options
author | teor <teor2345@gmail.com> | 2016-08-18 13:19:22 +1000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-09-13 10:13:55 -0400 |
commit | 75ebbed5576d402ef2929ee043ab2170bff5cc2b (patch) | |
tree | a2adf6e0bb29c05fac1e51213526fb7f18962433 /src/or/or.h | |
parent | b560f852f220f5630f6bf5a300d15b40c9c235cf (diff) | |
download | tor-75ebbed5576d402ef2929ee043ab2170bff5cc2b.tar.gz tor-75ebbed5576d402ef2929ee043ab2170bff5cc2b.zip |
Make Single Onion Service intro points respect ReachableAddresses
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index dd3ab8a03a..12459ddfa0 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -5077,7 +5077,8 @@ typedef struct rend_encoded_v2_service_descriptor_t { * the service side) and in rend_service_descriptor_t (on both the * client and service side). */ typedef struct rend_intro_point_t { - extend_info_t *extend_info; /**< Extend info of this introduction point. */ + extend_info_t *extend_info; /**< Extend info for connecting to this + * introduction point via a multi-hop path. */ crypto_pk_t *intro_key; /**< Introduction key that replaces the service * key, if this descriptor is V2. */ |