diff options
author | teor <teor@torproject.org> | 2019-04-24 16:57:49 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-04-24 17:29:10 +1000 |
commit | abe086dd976174ea52707f0ab27aae31228dfc2b (patch) | |
tree | d176227e16f6c5f05c3515cfac013eb2cd5811e9 /src/test/hs_test_helpers.c | |
parent | b19dd1bb11a59ab38dc1b45f2108a4a6f5ce2813 (diff) | |
download | tor-abe086dd976174ea52707f0ab27aae31228dfc2b.tar.gz tor-abe086dd976174ea52707f0ab27aae31228dfc2b.zip |
test/hs: Re-enable the IPv6 intro point in the HS tests
Tests 23588, partially reverts 23576.
Implements 29237.
Diffstat (limited to 'src/test/hs_test_helpers.c')
-rw-r--r-- | src/test/hs_test_helpers.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/hs_test_helpers.c b/src/test/hs_test_helpers.c index c57bdc730b..0a21fe576b 100644 --- a/src/test/hs_test_helpers.c +++ b/src/test/hs_test_helpers.c @@ -162,11 +162,8 @@ hs_helper_build_hs_desc_impl(unsigned int no_ip, /* Add four intro points. */ smartlist_add(desc->encrypted_data.intro_points, hs_helper_build_intro_point(signing_kp, now, "1.2.3.4", 0)); -/* IPv6-only introduction points are not supported yet, see #23588 */ -#if 0 smartlist_add(desc->encrypted_data.intro_points, hs_helper_build_intro_point(signing_kp, now, "[2600::1]", 0)); -#endif smartlist_add(desc->encrypted_data.intro_points, hs_helper_build_intro_point(signing_kp, now, "3.2.1.4", 1)); smartlist_add(desc->encrypted_data.intro_points, |