diff options
author | David Goulet <dgoulet@torproject.org> | 2018-05-02 13:42:24 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-05-02 13:42:24 -0400 |
commit | 1f739e9b06974566685c662c3526384efd68ed32 (patch) | |
tree | c2fdb73da5441b405518a5cc404e2af2299959eb /src/or/nodelist.c | |
parent | 1ef1ed76d864b6c3147c0444d9114ebcc53c18b5 (diff) | |
download | tor-1f739e9b06974566685c662c3526384efd68ed32.tar.gz tor-1f739e9b06974566685c662c3526384efd68ed32.zip |
dirauth: Move authdir_mode_v3() to module
This function must return false if the module is not compiled in. In order to
do that, we move the authdir_mode_v3() function out of router.c and into the
dirauth module new header file named mode.h.
It is always returning false if we don't have the module.
Closes #25990
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/nodelist.c')
-rw-r--r-- | src/or/nodelist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/nodelist.c b/src/or/nodelist.c index 675cbb0056..bc9a79940b 100644 --- a/src/or/nodelist.c +++ b/src/or/nodelist.c @@ -66,6 +66,8 @@ #include <string.h> +#include "dirauth/mode.h" + static void nodelist_drop_node(node_t *node, int remove_from_ht); #define node_free(val) \ FREE_AND_NULL(node_t, node_free_, (val)) |