diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-30 17:53:58 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-10-01 00:04:06 -0500 |
commit | 6785aa4010c141ab8792e41745acc2267ce46ca4 (patch) | |
tree | 2a90906e6aa7ba9114d4fc21d74aaf59c6a75bb8 /src/app/main/main.c | |
parent | b058f64cc002b44e6dd48616ca3163a01c3f3e14 (diff) | |
download | tor-6785aa4010c141ab8792e41745acc2267ce46ca4.tar.gz tor-6785aa4010c141ab8792e41745acc2267ce46ca4.zip |
Move routerparse and parsecommon to their own module.
Diffstat (limited to 'src/app/main/main.c')
-rw-r--r-- | src/app/main/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/app/main/main.c b/src/app/main/main.c index 8a24df2105..2e3efadc08 100644 --- a/src/app/main/main.c +++ b/src/app/main/main.c @@ -45,6 +45,7 @@ #include "feature/dirauth/process_descs.h" #include "feature/dircache/consdiffmgr.h" #include "feature/dircache/dirserv.h" +#include "feature/dirparse/routerparse.h" #include "feature/hibernate/hibernate.h" #include "feature/hs/hs_cache.h" #include "feature/nodelist/authcert.h" @@ -52,7 +53,6 @@ #include "feature/nodelist/networkstatus.h" #include "feature/nodelist/nodelist.h" #include "feature/nodelist/routerlist.h" -#include "feature/nodelist/routerparse.h" #include "feature/relay/dns.h" #include "feature/relay/ext_orport.h" #include "feature/relay/onion_queue.h" @@ -61,7 +61,6 @@ #include "feature/rend/rendcache.h" #include "feature/rend/rendclient.h" #include "feature/rend/rendservice.h" -#include "lib/geoip/geoip.h" #include "feature/stats/geoip_stats.h" #include "feature/stats/predict_ports.h" #include "feature/stats/rephist.h" @@ -70,6 +69,8 @@ #include "lib/crypt_ops/crypto_rand.h" #include "lib/crypt_ops/crypto_s2k.h" #include "lib/err/backtrace.h" +#include "lib/geoip/geoip.h" + #include "lib/process/waitpid.h" #include "lib/meminfo/meminfo.h" |