diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-30 23:08:25 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-10-01 00:09:00 -0500 |
commit | 430ca38f706be08e0df0c1cf025786cb25e46172 (patch) | |
tree | 278406566788d370c0373caceefc19b1e9905fb0 /src/core | |
parent | 2f5dc486993b88eb23de7f06043991f08e4d0d73 (diff) | |
download | tor-430ca38f706be08e0df0c1cf025786cb25e46172.tar.gz tor-430ca38f706be08e0df0c1cf025786cb25e46172.zip |
Split the authority-cert and signature/hash code from routerparse
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/include.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/include.am b/src/core/include.am index c1f63c751e..a295e6ca33 100644 --- a/src/core/include.am +++ b/src/core/include.am @@ -73,8 +73,11 @@ LIBTOR_APP_A_SOURCES = \ src/feature/dircommon/directory.c \ src/feature/dircommon/fp_pair.c \ src/feature/dircommon/voting_schedule.c \ + src/feature/dirparse/authcert_parse.c \ src/feature/dirparse/parsecommon.c \ src/feature/dirparse/routerparse.c \ + src/feature/dirparse/sigcommon.c \ + src/feature/dirparse/signing.c \ src/feature/dirparse/unparseable.c \ src/feature/hibernate/hibernate.c \ src/feature/hs/hs_cache.c \ @@ -288,8 +291,12 @@ noinst_HEADERS += \ src/feature/dircommon/fp_pair.h \ src/feature/dircommon/vote_timing_st.h \ src/feature/dircommon/voting_schedule.h \ + src/feature/dirparse/authcert_members.i \ + src/feature/dirparse/authcert_parse.h \ src/feature/dirparse/parsecommon.h \ src/feature/dirparse/routerparse.h \ + src/feature/dirparse/sigcommon.h \ + src/feature/dirparse/signing.h \ src/feature/dirparse/unparseable.h \ src/feature/hibernate/hibernate.h \ src/feature/hs/hs_cache.h \ |