aboutsummaryrefslogtreecommitdiff
path: root/src/core/mainloop
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2020-03-17 17:18:40 +1000
committerteor <teor@torproject.org>2020-03-20 18:05:10 +1000
commit81687f5bc975842bb4d251881b04e19092ab336e (patch)
tree1450f4ea123bf03e8ec9baa32164d45f5ed15409 /src/core/mainloop
parentfdba6ff0c0f27b9948101e63efd5acb965a2f6a3 (diff)
downloadtor-81687f5bc975842bb4d251881b04e19092ab336e.tar.gz
tor-81687f5bc975842bb4d251881b04e19092ab336e.zip
relay: Split out relay-only circuit building
Move the relay-only circuit building functions into a new file. Part of 33633.
Diffstat (limited to 'src/core/mainloop')
-rw-r--r--src/core/mainloop/cpuworker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mainloop/cpuworker.c b/src/core/mainloop/cpuworker.c
index abd48f886c..485ddb9741 100644
--- a/src/core/mainloop/cpuworker.c
+++ b/src/core/mainloop/cpuworker.c
@@ -19,7 +19,6 @@
**/
#include "core/or/or.h"
#include "core/or/channel.h"
-#include "core/or/circuitbuild.h"
#include "core/or/circuitlist.h"
#include "core/or/connection_or.h"
#include "app/config/config.h"
@@ -27,6 +26,7 @@
#include "lib/crypt_ops/crypto_rand.h"
#include "lib/crypt_ops/crypto_util.h"
#include "core/or/onion.h"
+#include "feature/relay/circuitbuild_relay.h"
#include "feature/relay/onion_queue.h"
#include "feature/stats/rephist.h"
#include "feature/relay/router.h"