aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/command.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-09-20 13:55:02 -0400
committerNick Mathewson <nickm@torproject.org>2018-09-21 09:14:05 -0400
commit98ef3e82e48c2d57c09d5f551b72e7d6bfe5347a (patch)
treeffbad59a83bab12d5c48dd21604ee31e7e634d81 /src/core/or/command.c
parent55122bfe0425c54aeb28d0daa266cc4601247994 (diff)
downloadtor-98ef3e82e48c2d57c09d5f551b72e7d6bfe5347a.tar.gz
tor-98ef3e82e48c2d57c09d5f551b72e7d6bfe5347a.zip
Move the non-crypto parts of onion.c out of src/core/crypto
The parts for handling cell formats should be in src/core/or. The parts for handling onionskin queues should be in src/core/or. Only the crypto wrapper belongs in src/core/crypto.
Diffstat (limited to 'src/core/or/command.c')
-rw-r--r--src/core/or/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/or/command.c b/src/core/or/command.c
index ebddc4a352..f93eb8d857 100644
--- a/src/core/or/command.c
+++ b/src/core/or/command.c
@@ -50,7 +50,8 @@
#include "core/or/dos.h"
#include "feature/hibernate/hibernate.h"
#include "feature/nodelist/nodelist.h"
-#include "core/crypto/onion.h"
+#include "core/or/onion.h"
+#include "core/crypto/onion_crypto.h"
#include "feature/stats/rephist.h"
#include "core/or/relay.h"
#include "feature/relay/router.h"
@@ -699,4 +700,3 @@ command_setup_listener(channel_listener_t *listener)
channel_listener_set_listener_fn(listener, command_handle_incoming_channel);
}
-