diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-15 11:34:33 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-15 11:34:33 -0400 |
commit | a0bc164af57a3e5828cfc4fdefb9b2191af79ce9 (patch) | |
tree | 3845bbf84170303102ff6c69d42105320d9039d4 /src/or/rendcommon.c | |
parent | bba998af65c9a414c56824f5779d2c47cf5a6b44 (diff) | |
download | tor-a0bc164af57a3e5828cfc4fdefb9b2191af79ce9.tar.gz tor-a0bc164af57a3e5828cfc4fdefb9b2191af79ce9.zip |
Extract {or,origin}_circuit_t into their own headers
Diffstat (limited to 'src/or/rendcommon.c')
-rw-r--r-- | src/or/rendcommon.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c index f3fa2f64d1..308b91878b 100644 --- a/src/or/rendcommon.c +++ b/src/or/rendcommon.c @@ -12,6 +12,7 @@ #include "or.h" #include "circuitbuild.h" +#include "circuitlist.h" #include "circuituse.h" #include "config.h" #include "control.h" @@ -30,6 +31,8 @@ #include "routerlist.h" #include "routerparse.h" +#include "origin_circuit_st.h" + /** Return 0 if one and two are the same service ids, else -1 or 1 */ int rend_cmp_service_ids(const char *one, const char *two) |