diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-05 14:45:34 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-05 14:45:34 -0400 |
commit | 0e4b1781f4f0135c925cd728a09cca7d7959b961 (patch) | |
tree | 885d1bed56b9ccc668fa5d1c7f8108a9117c38d4 /src/or | |
parent | 3d610363eff2fe70d3775a66a97f844956480141 (diff) | |
download | tor-0e4b1781f4f0135c925cd728a09cca7d7959b961.tar.gz tor-0e4b1781f4f0135c925cd728a09cca7d7959b961.zip |
Move handles.h to src/lib/container
There might be a better place for it in the long run, but this is
the best we can think of for now.
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/channel.h | 2 | ||||
-rw-r--r-- | src/or/conscache.h | 2 | ||||
-rw-r--r-- | src/or/entrynodes.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/or/channel.h b/src/or/channel.h index 010a8aa5bc..7f25056769 100644 --- a/src/or/channel.h +++ b/src/or/channel.h @@ -11,7 +11,7 @@ #include "or/or.h" #include "or/circuitmux.h" -#include "common/handles.h" +#include "lib/container/handles.h" #include "lib/crypt_ops/crypto_ed25519.h" #include "tor_queue.h" diff --git a/src/or/conscache.h b/src/or/conscache.h index c46b824235..c274a60393 100644 --- a/src/or/conscache.h +++ b/src/or/conscache.h @@ -4,7 +4,7 @@ #ifndef TOR_CONSCACHE_H #define TOR_CONSCACHE_H -#include "common/handles.h" +#include "lib/container/handles.h" typedef struct consensus_cache_entry_t consensus_cache_entry_t; typedef struct consensus_cache_t consensus_cache_t; diff --git a/src/or/entrynodes.h b/src/or/entrynodes.h index 56b961e9a0..5f9b5bdcba 100644 --- a/src/or/entrynodes.h +++ b/src/or/entrynodes.h @@ -12,7 +12,7 @@ #ifndef TOR_ENTRYNODES_H #define TOR_ENTRYNODES_H -#include "common/handles.h" +#include "lib/container/handles.h" /* Forward declare for guard_selection_t; entrynodes.c has the real struct */ typedef struct guard_selection_s guard_selection_t; |