diff options
author | George Kadianakis <desnacked@riseup.net> | 2017-05-02 16:22:00 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-07-07 11:12:26 -0400 |
commit | 9ff5613a340f220a202d3f0332f091d812068881 (patch) | |
tree | 903fd8ab7b5bcd9c11752db72f5be36fa83ce1f8 /src/or/include.am | |
parent | 0cb66fc900f5198fb063454801af3b4b22867e50 (diff) | |
download | tor-9ff5613a340f220a202d3f0332f091d812068881.tar.gz tor-9ff5613a340f220a202d3f0332f091d812068881.zip |
test: Introduce hs_client_note_connection_attempt_succeeded().
This commit paves the way for the e2e circuit unittests.
Add a stub for the prop224 equivalent of rend_client_note_connection_attempt_ended().
That function was needed for tests, since the legacy function would get
called when we attach streams and our client-side tests would crash with
assert failures on rend_data.
This also introduces hs_client.[ch] to the codebase.
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/include.am b/src/or/include.am index 18868e48f7..2f9f1a9c43 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -59,6 +59,7 @@ LIBTOR_A_SOURCES = \ src/or/hs_intropoint.c \ src/or/hs_ntor.c \ src/or/hs_service.c \ + src/or/hs_client.c \ src/or/entrynodes.c \ src/or/ext_orport.c \ src/or/hibernate.c \ @@ -190,6 +191,7 @@ ORHEADERS = \ src/or/hs_circuitmap.h \ src/or/hs_ntor.h \ src/or/hs_service.h \ + src/or/hs_client.h \ src/or/keypin.h \ src/or/main.h \ src/or/microdesc.h \ |