diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-19 09:34:27 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-12-19 09:34:27 -0500 |
commit | f4f70e1f13bc66558926b3255a8783e3bdca5f66 (patch) | |
tree | 064c7cdbc05b03f63f2066f531c06eb48528f8f5 /src/feature/dirauth/shared_random.c | |
parent | 99874ecc1de43756bc5ba7f92ef8073e5d5b3c72 (diff) | |
download | tor-f4f70e1f13bc66558926b3255a8783e3bdca5f66.tar.gz tor-f4f70e1f13bc66558926b3255a8783e3bdca5f66.zip |
Move AuthDirSharedRandomness to dirauth module.
Diffstat (limited to 'src/feature/dirauth/shared_random.c')
-rw-r--r-- | src/feature/dirauth/shared_random.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/feature/dirauth/shared_random.c b/src/feature/dirauth/shared_random.c index ebc595e517..f91a3a3e25 100644 --- a/src/feature/dirauth/shared_random.c +++ b/src/feature/dirauth/shared_random.c @@ -103,7 +103,9 @@ #include "feature/dirauth/dirvote.h" #include "feature/dirauth/authmode.h" +#include "feature/dirauth/dirauth_sys.h" +#include "feature/dirauth/dirauth_options_st.h" #include "feature/nodelist/authority_cert_st.h" #include "feature/nodelist/networkstatus_st.h" @@ -1130,7 +1132,7 @@ sr_get_string_for_vote(void) char *vote_str = NULL; digestmap_t *state_commits; smartlist_t *chunks = smartlist_new(); - const or_options_t *options = get_options(); + const dirauth_options_t *options = dirauth_get_options(); /* Are we participating in the protocol? */ if (!options->AuthDirSharedRandomness) { @@ -1195,7 +1197,7 @@ sr_get_string_for_consensus(const smartlist_t *votes, int32_t num_srv_agreements) { char *srv_str; - const or_options_t *options = get_options(); + const dirauth_options_t *options = dirauth_get_options(); tor_assert(votes); |