summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-07-18 15:12:18 -0400
committerNick Mathewson <nickm@torproject.org>2018-07-18 15:12:18 -0400
commit23811052fe287bafd27f590a02658ff4c588a8a9 (patch)
treec4e319fdd38d20265320db3c25b1c64620fd4d9b
parent61e080e24a741a6b6978da272b0372a8391028db (diff)
downloadtor-23811052fe287bafd27f590a02658ff4c588a8a9.tar.gz
tor-23811052fe287bafd27f590a02658ff4c588a8a9.zip
Add some missing includes and struct declarations.
-rw-r--r--src/feature/dirauth/dirvote.c1
-rw-r--r--src/feature/dircache/dirserv.h4
-rw-r--r--src/test/test_dir.c1
3 files changed, 5 insertions, 1 deletions
diff --git a/src/feature/dirauth/dirvote.c b/src/feature/dirauth/dirvote.c
index 753c42b809..2a48a32834 100644
--- a/src/feature/dirauth/dirvote.c
+++ b/src/feature/dirauth/dirvote.c
@@ -15,6 +15,7 @@
#include "feature/nodelist/parsecommon.h"
#include "core/or/policies.h"
#include "core/or/protover.h"
+#include "core/or/tor_version_st.h"
#include "feature/stats/rephist.h"
#include "feature/relay/router.h"
#include "feature/relay/routerkeys.h"
diff --git a/src/feature/dircache/dirserv.h b/src/feature/dircache/dirserv.h
index d399c41090..b1b8cee5fc 100644
--- a/src/feature/dircache/dirserv.h
+++ b/src/feature/dircache/dirserv.h
@@ -180,7 +180,9 @@ char *routerstatus_format_entry(
void dirserv_free_all(void);
void cached_dir_decref(cached_dir_t *d);
cached_dir_t *new_cached_dir(char *s, time_t published);
-char *format_recommended_version_list(const config_line_t *line, int warn);
+struct config_line_t;
+char *format_recommended_version_list(const struct config_line_t *line,
+ int warn);
int validate_recommended_package_line(const char *line);
int dirserv_query_measured_bw_cache_kb(const char *node_id,
long *bw_out,
diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index 4396d819c8..92917723e0 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -23,6 +23,7 @@
#include "app/config/confparse.h"
#include "app/config/config.h"
#include "feature/control/control.h"
+#include "lib/encoding/confline.h"
#include "lib/crypt_ops/crypto_ed25519.h"
#include "lib/crypt_ops/crypto_format.h"
#include "lib/crypt_ops/crypto_rand.h"