diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-15 13:23:02 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-15 13:23:02 -0400 |
commit | 72d2fd83d898c2a7151c7fdbbffbc4c25fe34894 (patch) | |
tree | 2d0a4945d054bb87e4f1a860de574c89e50aabc2 /src/or/dirauth | |
parent | d2942d127da454a1ffb69da176582b5d74918bb1 (diff) | |
download | tor-72d2fd83d898c2a7151c7fdbbffbc4c25fe34894.tar.gz tor-72d2fd83d898c2a7151c7fdbbffbc4c25fe34894.zip |
Split vote_{microdesc_hash,routerstatus}_t into their own headers
Diffstat (limited to 'src/or/dirauth')
-rw-r--r-- | src/or/dirauth/dircollate.c | 2 | ||||
-rw-r--r-- | src/or/dirauth/dirvote.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/or/dirauth/dircollate.c b/src/or/dirauth/dircollate.c index dec6f75154..388885fe0b 100644 --- a/src/or/dirauth/dircollate.c +++ b/src/or/dirauth/dircollate.c @@ -25,6 +25,8 @@ #include "dircollate.h" #include "dirvote.h" +#include "vote_routerstatus_st.h" + static void dircollator_collate_by_ed25519(dircollator_t *dc); /** Hashtable entry mapping a pair of digests (actually an ed25519 key and an diff --git a/src/or/dirauth/dirvote.c b/src/or/dirauth/dirvote.c index 41acc21d67..c702ca6974 100644 --- a/src/or/dirauth/dirvote.c +++ b/src/or/dirauth/dirvote.c @@ -30,6 +30,8 @@ #include "dir_server_st.h" #include "node_st.h" +#include "vote_microdesc_hash_st.h" +#include "vote_routerstatus_st.h" #include "vote_timing_st.h" /** |