diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-12-04 16:09:52 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-02 14:11:14 -0500 |
commit | f7e590df05b1b3568a68ee3eae3965cb58e13de7 (patch) | |
tree | c808c0da48de96067ae20fb07aae9c1db451b891 /src/test | |
parent | 5b3dd1610cf2147509167332bf298fc821e6a102 (diff) | |
download | tor-f7e590df05b1b3568a68ee3eae3965cb58e13de7.tar.gz tor-f7e590df05b1b3568a68ee3eae3965cb58e13de7.zip |
Split onion.[ch] into onion{,_fast,_tap}.[ch]
I'm going to want a generic "onionskin" type and set of wrappers, and
for that, it will be helpful to isolate the different circuit creation
handshakes. Now the original handshake is in onion_tap.[ch], the
CREATE_FAST handshake is in onion_fast.[ch], and onion.[ch] now
handles the onion queue.
This commit does nothing but move code and adjust header files.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/bench.c | 2 | ||||
-rw-r--r-- | src/test/test.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/bench.c b/src/test/bench.c index de7e4e557c..567b1a4d7c 100644 --- a/src/test/bench.c +++ b/src/test/bench.c @@ -18,7 +18,7 @@ const char tor_git_revision[] = ""; #define CONFIG_PRIVATE #include "or.h" -#include "onion.h" +#include "onion_tap.h" #include "relay.h" #include "config.h" #ifdef CURVE25519_ENABLED diff --git a/src/test/test.c b/src/test/test.c index 78f9c0659e..cc2d481c79 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -53,7 +53,7 @@ double fabs(double x); #include "torgzip.h" #include "mempool.h" #include "memarea.h" -#include "onion.h" +#include "onion_tap.h" #include "policies.h" #include "rephist.h" #include "routerparse.h" |