diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-08-11 19:38:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-08-21 12:25:33 -0400 |
commit | 598bc78bfa62e0879497c0ef03999d3700a5cd16 (patch) | |
tree | db1fe950940aff8bf13f804f7b3cbdd21f902e25 /src/test/test_tortls.c | |
parent | 9a4f05b05c12687e640d2aed9bb21229138bd1a5 (diff) | |
download | tor-598bc78bfa62e0879497c0ef03999d3700a5cd16.tar.gz tor-598bc78bfa62e0879497c0ef03999d3700a5cd16.zip |
Extract tortls structures into a new header; clean up a little
Diffstat (limited to 'src/test/test_tortls.c')
-rw-r--r-- | src/test/test_tortls.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/test_tortls.c b/src/test/test_tortls.c index f5b11d4f2a..ec197ba997 100644 --- a/src/test/test_tortls.c +++ b/src/test/test_tortls.c @@ -3,6 +3,7 @@ #define TORTLS_PRIVATE #define TORTLS_OPENSSL_PRIVATE +#define TOR_X509_PRIVATE #define LOG_PRIVATE #include "orconfig.h" @@ -33,7 +34,9 @@ ENABLE_GCC_WARNING(redundant-decls) #include "core/or/or.h" #include "lib/log/log.h" #include "app/config/config.h" +#include "lib/crypt_ops/compat_openssl.h" #include "lib/tls/tortls.h" +#include "lib/tls/tortls_st.h" #include "lib/tls/x509.h" #include "app/config/or_state_st.h" |