diff options
author | David Goulet <dgoulet@torproject.org> | 2016-08-29 15:28:58 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2016-10-31 16:03:28 -0400 |
commit | f22eb2730cccab44de579c64ba2386a94abef0fa (patch) | |
tree | 0c6b622bb1938a7c7481083fce38f70b4ce6b00b /src/trunnel/include.am | |
parent | 0ba3444b4a9d408573a442b32be794a78b9250b5 (diff) | |
download | tor-f22eb2730cccab44de579c64ba2386a94abef0fa.tar.gz tor-f22eb2730cccab44de579c64ba2386a94abef0fa.zip |
prop224: Add ESTABLISH_INTRO and INTRO_ESTABLISHED trunnel definition
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/trunnel/include.am')
-rw-r--r-- | src/trunnel/include.am | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/trunnel/include.am b/src/trunnel/include.am index b1448b7cb2..d48971acbd 100644 --- a/src/trunnel/include.am +++ b/src/trunnel/include.am @@ -1,4 +1,3 @@ - noinst_LIBRARIES += \ src/trunnel/libor-trunnel.a @@ -18,15 +17,19 @@ TRUNNELSOURCES = \ src/ext/trunnel/trunnel.c \ src/trunnel/ed25519_cert.c \ src/trunnel/link_handshake.c \ - src/trunnel/pwbox.c + src/trunnel/pwbox.c \ + src/trunnel/hs/cell_common.c \ + src/trunnel/hs/cell_establish_intro.c TRUNNELHEADERS = \ src/ext/trunnel/trunnel.h \ src/ext/trunnel/trunnel-impl.h \ - src/trunnel/trunnel-local.h \ + src/trunnel/trunnel-local.h \ src/trunnel/ed25519_cert.h \ - src/trunnel/link_handshake.h \ - src/trunnel/pwbox.h + src/trunnel/link_handshake.h \ + src/trunnel/pwbox.h \ + src/trunnel/hs/cell_common.h \ + src/trunnel/hs/cell_establish_intro.h src_trunnel_libor_trunnel_a_SOURCES = $(TRUNNELSOURCES) src_trunnel_libor_trunnel_a_CPPFLAGS = -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) |