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/core/include.am | |
parent | b058f64cc002b44e6dd48616ca3163a01c3f3e14 (diff) | |
download | tor-6785aa4010c141ab8792e41745acc2267ce46ca4.tar.gz tor-6785aa4010c141ab8792e41745acc2267ce46ca4.zip |
Move routerparse and parsecommon to their own module.
Diffstat (limited to 'src/core/include.am')
-rw-r--r-- | src/core/include.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/include.am b/src/core/include.am index e51819fa20..aa8e29ad3f 100644 --- a/src/core/include.am +++ b/src/core/include.am @@ -72,6 +72,8 @@ LIBTOR_APP_A_SOURCES = \ src/feature/dircommon/directory.c \ src/feature/dircommon/fp_pair.c \ src/feature/dircommon/voting_schedule.c \ + src/feature/dirparse/parsecommon.c \ + src/feature/dirparse/routerparse.c \ src/feature/hibernate/hibernate.c \ src/feature/hs/hs_cache.c \ src/feature/hs/hs_cell.c \ @@ -98,10 +100,8 @@ LIBTOR_APP_A_SOURCES = \ src/feature/nodelist/nickname.c \ src/feature/nodelist/nodelist.c \ src/feature/nodelist/node_select.c \ - src/feature/nodelist/parsecommon.c \ src/feature/nodelist/routerinfo.c \ src/feature/nodelist/routerlist.c \ - src/feature/nodelist/routerparse.c \ src/feature/nodelist/routerset.c \ src/feature/nodelist/fmt_routerstatus.c \ src/feature/nodelist/torcert.c \ @@ -285,6 +285,8 @@ noinst_HEADERS += \ src/feature/dircommon/fp_pair.h \ src/feature/dircommon/vote_timing_st.h \ src/feature/dircommon/voting_schedule.h \ + src/feature/dirparse/parsecommon.h \ + src/feature/dirparse/routerparse.h \ src/feature/hibernate/hibernate.h \ src/feature/hs/hs_cache.h \ src/feature/hs/hs_cell.h \ @@ -320,12 +322,10 @@ noinst_HEADERS += \ src/feature/nodelist/node_st.h \ src/feature/nodelist/nodelist.h \ src/feature/nodelist/node_select.h \ - src/feature/nodelist/parsecommon.h \ src/feature/nodelist/routerinfo.h \ src/feature/nodelist/routerinfo_st.h \ src/feature/nodelist/routerlist.h \ src/feature/nodelist/routerlist_st.h \ - src/feature/nodelist/routerparse.h \ src/feature/nodelist/routerset.h \ src/feature/nodelist/fmt_routerstatus.h \ src/feature/nodelist/routerstatus_st.h \ |