diff options
author | David Goulet <dgoulet@torproject.org> | 2018-04-25 10:09:50 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-04-27 11:40:44 -0400 |
commit | d7e4706f2293cb199d3246197b2d911188de0e45 (patch) | |
tree | a02734340ac3c98b541c5d43ef5dc169b0d17814 /src/or/networkstatus.h | |
parent | 35ff2a3b864d921d45aec50f551b59f24e31a512 (diff) | |
download | tor-d7e4706f2293cb199d3246197b2d911188de0e45.tar.gz tor-d7e4706f2293cb199d3246197b2d911188de0e45.zip |
ns: Move ns_detached_signatures_free() to networkstatus.c
From dirvote.c to networkstatus.c where it makes more sense both in terms of
namespace and subsystem responsability.
This removes one less dependency on the dirauth module.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/networkstatus.h')
-rw-r--r-- | src/or/networkstatus.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/networkstatus.h b/src/or/networkstatus.h index 04cf277d2f..bd78292050 100644 --- a/src/or/networkstatus.h +++ b/src/or/networkstatus.h @@ -24,6 +24,9 @@ void routerstatus_free_(routerstatus_t *rs); void networkstatus_vote_free_(networkstatus_t *ns); #define networkstatus_vote_free(ns) \ FREE_AND_NULL(networkstatus_t, networkstatus_vote_free_, (ns)) +void ns_detached_signatures_free_(ns_detached_signatures_t *s); +#define ns_detached_signatures_free(s) \ + FREE_AND_NULL(ns_detached_signatures_t, ns_detached_signatures_free_, (s)) networkstatus_voter_info_t *networkstatus_get_voter_by_id( networkstatus_t *vote, const char *identity); |