diff options
author | David Goulet <dgoulet@torproject.org> | 2017-08-29 16:02:13 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-08-29 16:02:13 -0400 |
commit | 0850ae50490419b3d071a18462253148ea29e62c (patch) | |
tree | 8cc1e7188f14941919bf5c73c12d10385e9ad0db /src/or/hs_common.c | |
parent | 209bfe715cc8c1c59b2578c406749a0d4a5bd8cb (diff) | |
download | tor-0850ae50490419b3d071a18462253148ea29e62c.tar.gz tor-0850ae50490419b3d071a18462253148ea29e62c.zip |
hs: Implement an HS client free all function
Called from main.c, the function for now purges the hidden service directory
request cache.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_common.c')
-rw-r--r-- | src/or/hs_common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/hs_common.c b/src/or/hs_common.c index d866ab6a8f..0103c68f34 100644 --- a/src/or/hs_common.c +++ b/src/or/hs_common.c @@ -19,6 +19,7 @@ #include "nodelist.h" #include "hs_cache.h" #include "hs_common.h" +#include "hs_client.h" #include "hs_ident.h" #include "hs_service.h" #include "policies.h" @@ -1700,6 +1701,7 @@ hs_free_all(void) hs_circuitmap_free_all(); hs_service_free_all(); hs_cache_free_all(); + hs_client_free_all(); } /* For the given origin circuit circ, decrement the number of rendezvous |