diff options
author | David Goulet <dgoulet@torproject.org> | 2017-05-12 11:39:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-07-07 11:12:26 -0400 |
commit | f8dc1164ba86099d4106dffa84435366bf6cdcd6 (patch) | |
tree | 724222dbf2f8d503a97678d36f8494b1a7efa3fa /src/or/include.am | |
parent | 90046a09dd95c789e28f63c320c1c16e58ecf57a (diff) | |
download | tor-f8dc1164ba86099d4106dffa84435366bf6cdcd6.tar.gz tor-f8dc1164ba86099d4106dffa84435366bf6cdcd6.zip |
prop224: Add connection and circuit identifier object
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/or/include.am b/src/or/include.am index 1ef5afa013..e800db5604 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -50,16 +50,17 @@ LIBTOR_A_SOURCES = \ src/or/dnsserv.c \ src/or/fp_pair.c \ src/or/geoip.c \ - src/or/hs_intropoint.c \ - src/or/hs_circuitmap.c \ - src/or/hs_ntor.c \ - src/or/hs_service.c \ - src/or/entrynodes.c \ - src/or/ext_orport.c \ - src/or/hibernate.c \ src/or/hs_cache.c \ + src/or/hs_circuitmap.c \ src/or/hs_common.c \ src/or/hs_descriptor.c \ + src/or/hs_ident.c \ + src/or/hs_intropoint.c \ + src/or/hs_ntor.c \ + src/or/hs_service.c \ + src/or/entrynodes.c \ + src/or/ext_orport.c \ + src/or/hibernate.c \ src/or/keypin.c \ src/or/main.c \ src/or/microdesc.c \ @@ -182,6 +183,7 @@ ORHEADERS = \ src/or/hs_cache.h \ src/or/hs_common.h \ src/or/hs_descriptor.h \ + src/or/hs_ident.h \ src/or/hs_intropoint.h \ src/or/hs_circuitmap.h \ src/or/hs_ntor.h \ |