diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-10 13:36:45 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-10 13:36:45 -0400 |
commit | a2c44a7a7e3810bb18121561f012830da696724d (patch) | |
tree | 51a1644fa11f08dc438bf2802201fd52a370cef3 /src/test/test_connection.c | |
parent | 8de48c111c09d76ecd00bb9dec67acb47890db01 (diff) | |
download | tor-a2c44a7a7e3810bb18121561f012830da696724d.tar.gz tor-a2c44a7a7e3810bb18121561f012830da696724d.zip |
Isolate resolve.h usage in the modules that really need it.
(Almost none of Tor should actually need to touch the platform resolver.)
Diffstat (limited to 'src/test/test_connection.c')
-rw-r--r-- | src/test/test_connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_connection.c b/src/test/test_connection.c index c423c6573f..e716c83fe1 100644 --- a/src/test/test_connection.c +++ b/src/test/test_connection.c @@ -20,6 +20,7 @@ #include "feature/rend/rendcache.h" #include "feature/dircache/directory.h" #include "core/or/connection_or.h" +#include "lib/net/resolve.h" #include "test/test_connection.h" #include "test/test_helpers.h" @@ -899,4 +900,3 @@ struct testcase_t connection_tests[] = { { "failed_orconn_tracker", test_failed_orconn_tracker, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; - |