diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-25 14:19:48 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-25 15:14:57 -0400 |
commit | 934859cf80902e6a16fb69d884fadc8ea831779f (patch) | |
tree | 0567013871dbad5cfb70f87292e4a1772361a535 /src/core/include.am | |
parent | c82163dff468443d28b6d0c9b1253f7721eb3fdc (diff) | |
download | tor-934859cf80902e6a16fb69d884fadc8ea831779f.tar.gz tor-934859cf80902e6a16fb69d884fadc8ea831779f.zip |
Move key-loading and crosscert-checking out of feature/relay
This is also used by onion services, so it needs to go in another
module.
Diffstat (limited to 'src/core/include.am')
-rw-r--r-- | src/core/include.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/include.am b/src/core/include.am index 0bd4626c49..954b3bb553 100644 --- a/src/core/include.am +++ b/src/core/include.am @@ -86,6 +86,8 @@ LIBTOR_APP_A_SOURCES = \ src/feature/hs/hs_stats.c \ src/feature/hs_common/replaycache.c \ src/feature/hs_common/shared_random_client.c \ + src/feature/keymgt/loadkey.c \ + src/feature/dirauth/keypin.c \ src/feature/nodelist/authcert.c \ src/feature/nodelist/dirlist.c \ src/feature/nodelist/microdesc.c \ @@ -289,6 +291,7 @@ noinst_HEADERS += \ src/feature/hs/hsdir_index_st.h \ src/feature/hs_common/replaycache.h \ src/feature/hs_common/shared_random_client.h \ + src/feature/keymgt/loadkey.h \ src/feature/nodelist/authcert.h \ src/feature/nodelist/authority_cert_st.h \ src/feature/nodelist/desc_store_st.h \ |