diff options
author | David Goulet <dgoulet@torproject.org> | 2017-06-29 13:29:23 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-08-24 13:03:28 -0400 |
commit | 8e2854372d777d6be63d1bf766ca6db9100490de (patch) | |
tree | eed4c9eb96908cdf0a7def3b2a7832424c419aec /src/or/hs_common.c | |
parent | b13ee8e4ae59f85ce75800aa7dd90cfe58c04a5e (diff) | |
download | tor-8e2854372d777d6be63d1bf766ca6db9100490de.tar.gz tor-8e2854372d777d6be63d1bf766ca6db9100490de.zip |
prop224: Helper function to assert on invalid client intro circuit
Put all the possible assert() we can do on a client introduction circuit in
one helper function to make sure it is valid and usable.
It is disabled for now so gcc doesn't complain that we have a unused function.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_common.c')
-rw-r--r-- | src/or/hs_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/hs_common.c b/src/or/hs_common.c index bc44265d53..e0c7dca4bc 100644 --- a/src/or/hs_common.c +++ b/src/or/hs_common.c @@ -18,6 +18,7 @@ #include "nodelist.h" #include "hs_cache.h" #include "hs_common.h" +#include "hs_ident.h" #include "hs_service.h" #include "rendcommon.h" #include "rendservice.h" |