aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/crypt_path_st.h
diff options
context:
space:
mode:
authorGeorge Kadianakis <desnacked@riseup.net>2019-04-08 16:18:44 +0300
committerGeorge Kadianakis <desnacked@riseup.net>2019-05-03 18:15:11 +0300
commitf5635989b06260710b282e75be7b731e2846f700 (patch)
tree62c67a6dfd0618a65470c1975d54a7c79217f9c5 /src/core/or/crypt_path_st.h
parent18d61c0e6e71dace189384c8af7f4fec158969b3 (diff)
downloadtor-f5635989b06260710b282e75be7b731e2846f700.tar.gz
tor-f5635989b06260710b282e75be7b731e2846f700.zip
Hiding crypt_path_t: Create a constructor for crypt_path_t.
We are using an opaque pointer so the structure needs to be allocated on the heap. This means we now need a constructor for crypt_path_t. Also modify all places initializing a crypt_path_t to use the constructor.
Diffstat (limited to 'src/core/or/crypt_path_st.h')
-rw-r--r--src/core/or/crypt_path_st.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/or/crypt_path_st.h b/src/core/or/crypt_path_st.h
index 833cfefad1..7da3c57f49 100644
--- a/src/core/or/crypt_path_st.h
+++ b/src/core/or/crypt_path_st.h
@@ -8,9 +8,6 @@
#define CRYPT_PATH_ST_H
#include "core/or/relay_crypto_st.h"
-struct crypto_dh_t;
-
-#define CRYPT_PATH_MAGIC 0x70127012u
struct fast_handshake_state_t;
struct ntor_handshake_state_t;
@@ -26,6 +23,8 @@ struct onion_handshake_state_t {
#ifdef CRYPT_PATH_PRIVATE
+#define CRYPT_PATH_MAGIC 0x70127012u
+
/* The private parts of crypt path that don't need to be exposed to all the
* modules. */
struct crypt_path_private_t {