diff options
author | David Goulet <dgoulet@torproject.org> | 2018-04-25 10:49:32 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-05-01 10:06:13 -0400 |
commit | 6ee6533fd89018036f11c5ee62897f8a2b6c39c0 (patch) | |
tree | f0f14ed5a9128733d2a6425b9fa00f71d11a545e /src/or/dirauth/dirvote.h | |
parent | 2963e65c30d1c1463e71385439246e0df1e363c5 (diff) | |
download | tor-6ee6533fd89018036f11c5ee62897f8a2b6c39c0.tar.gz tor-6ee6533fd89018036f11c5ee62897f8a2b6c39c0.zip |
dirvote: Free vote commits in the dirauth module
In order to make sr_commit_free() only used by the dirauth module, this
commits moves the commits free from a vote object into the dirvote.c file
which is now only for the module.
The function does nothing if the module is disabled.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/dirauth/dirvote.h')
-rw-r--r-- | src/or/dirauth/dirvote.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/or/dirauth/dirvote.h b/src/or/dirauth/dirvote.h index 4514c6daf0..9682c60364 100644 --- a/src/or/dirauth/dirvote.h +++ b/src/or/dirauth/dirvote.h @@ -100,6 +100,7 @@ void dirvote_act(const or_options_t *options, time_t now); void dirvote_free_all(void); void dirvote_parse_sr_commits(networkstatus_t *ns, smartlist_t *tokens); +void dirvote_clear_commits(networkstatus_t *ns); #else /* HAVE_MODULE_DIRAUTH */ @@ -122,6 +123,12 @@ dirvote_parse_sr_commits(networkstatus_t *ns, smartlist_t *tokens) (void) tokens; } +static inline void +dirvote_clear_commits(networkstatus_t *ns) +{ + (void) ns; +} + #endif /* HAVE_MODULE_DIRAUTH */ void dirvote_recalculate_timing(const or_options_t *options, time_t now); |