diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-19 14:10:15 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-19 17:08:57 -0400 |
commit | 08e3b88f0774fedb41a6b1c170a710dd12a7cb90 (patch) | |
tree | 856a7f9ce528021c1d0c9d09b631d09aeec2356c /src/feature/client | |
parent | 119159677be14351ebcae647d3988f4f2fd9eb72 (diff) | |
download | tor-08e3b88f0774fedb41a6b1c170a710dd12a7cb90.tar.gz tor-08e3b88f0774fedb41a6b1c170a710dd12a7cb90.zip |
Split routerlist.c into 4 separate modules
There are now separate modules for:
* the list of router descriptors
* the list of authorities and fallbacks
* managing authority certificates
* selecting random nodes
Diffstat (limited to 'src/feature/client')
-rw-r--r-- | src/feature/client/bridges.c | 2 | ||||
-rw-r--r-- | src/feature/client/entrynodes.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/feature/client/bridges.c b/src/feature/client/bridges.c index 7f4422f787..5ab0f6f4f5 100644 --- a/src/feature/client/bridges.c +++ b/src/feature/client/bridges.c @@ -23,7 +23,9 @@ #include "feature/nodelist/nodelist.h" #include "core/or/policies.h" #include "feature/relay/router.h" +#include "feature/nodelist/dirlist.h" #include "feature/nodelist/routerlist.h" + #include "feature/nodelist/routerset.h" #include "feature/client/transports.h" diff --git a/src/feature/client/entrynodes.c b/src/feature/client/entrynodes.c index 494ad33528..f16de722df 100644 --- a/src/feature/client/entrynodes.c +++ b/src/feature/client/entrynodes.c @@ -133,7 +133,7 @@ #include "feature/nodelist/nodelist.h" #include "core/or/policies.h" #include "feature/relay/router.h" -#include "feature/nodelist/routerlist.h" +#include "feature/nodelist/node_select.h" #include "feature/nodelist/routerparse.h" #include "feature/nodelist/routerset.h" #include "feature/client/transports.h" |