tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 887bf05c24ab0642a2bf8b77990cc2b8a6dce533
parent 774d1092fd08bf8d0fc0948a13c81c0b572d8b31
Author: Nick Mathewson <nickm@torproject.org>
Date:   Mon, 16 Dec 2019 13:13:13 -0500

routerparse.h: include parsecommon.h when exposing token table.

Without this include, our compilation depends more on include order.

Diffstat:
Msrc/feature/dirparse/routerparse.h | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/feature/dirparse/routerparse.h b/src/feature/dirparse/routerparse.h @@ -41,6 +41,7 @@ void routerparse_init(void); void routerparse_free_all(void); #ifdef EXPOSE_ROUTERDESC_TOKEN_TABLE +#include "feature/dirparse/parsecommon.h" extern const struct token_rule_t routerdesc_token_table[]; #endif