diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-15 12:23:06 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-15 12:23:06 -0400 |
commit | 990184da4976f98365ca7d98762e91a66f1d3009 (patch) | |
tree | c432d840a285db958261cba53efdf8369758ad53 /src/test | |
parent | 22e9c647387509b44ff75e232aede360e3f87070 (diff) | |
download | tor-990184da4976f98365ca7d98762e91a66f1d3009.tar.gz tor-990184da4976f98365ca7d98762e91a66f1d3009.zip |
Extract rend_intro_point_t into its own header.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/rend_test_helpers.c | 1 | ||||
-rw-r--r-- | src/test/test.c | 1 | ||||
-rw-r--r-- | src/test/test_hs.c | 3 | ||||
-rw-r--r-- | src/test/test_rendcache.c | 1 |
4 files changed, 6 insertions, 0 deletions
diff --git a/src/test/rend_test_helpers.c b/src/test/rend_test_helpers.c index 177935edfb..fb2e4cf50b 100644 --- a/src/test/rend_test_helpers.c +++ b/src/test/rend_test_helpers.c @@ -7,6 +7,7 @@ #include "rendcommon.h" #include "rend_test_helpers.h" +#include "rend_intro_point_st.h" #include "rend_service_descriptor_st.h" void diff --git a/src/test/test.c b/src/test/test.c index 0408615605..4476319a4b 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -63,6 +63,7 @@ double fabs(double x); #include "crypto_curve25519.h" #include "or_circuit_st.h" +#include "rend_intro_point_st.h" #include "rend_service_descriptor_st.h" /** Run unit tests for the onion handshake code. */ diff --git a/src/test/test_hs.c b/src/test/test_hs.c index 64448de510..0505285f3d 100644 --- a/src/test/test_hs.c +++ b/src/test/test_hs.c @@ -21,6 +21,9 @@ #include "rendservice.h" #include "routerset.h" #include "circuitbuild.h" + +#include "rend_intro_point_st.h" + #include "test_helpers.h" /* mock ID digest and longname for node that's in nodelist */ diff --git a/src/test/test_rendcache.c b/src/test/test_rendcache.c index f1e94eb021..b4b76df882 100644 --- a/src/test/test_rendcache.c +++ b/src/test/test_rendcache.c @@ -12,6 +12,7 @@ #include "config.h" #include "hs_common.h" +#include "rend_intro_point_st.h" #include "rend_service_descriptor_st.h" #include "rend_test_helpers.h" |