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/circuitlist.c | |
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/circuitlist.c')
-rw-r--r-- | src/or/circuitlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 86b0aa097a..d11e128787 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -67,6 +67,7 @@ #include "main.h" #include "hs_circuitmap.h" #include "hs_common.h" +#include "hs_ident.h" #include "networkstatus.h" #include "nodelist.h" #include "onion.h" @@ -957,6 +958,7 @@ circuit_free(circuit_t *circ) crypto_pk_free(ocirc->intro_key); rend_data_free(ocirc->rend_data); + hs_ident_circuit_free(ocirc->hs_ident); tor_free(ocirc->dest_address); if (ocirc->socks_username) { |