X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnode.h;fp=src%2Fnode.h;h=c83610e885af469909e7e61f8ba9671444bd9804;hp=f9ef3c15b81d442fce54a5f22406cc630cd2ca3b;hb=40b21d3ff4b50f7688e49651d1237987ce45128d;hpb=48e353e9fdf189c4fd5fa7ebc76a72535b4f6632 diff --git a/src/node.h b/src/node.h index f9ef3c15..c83610e8 100644 --- a/src/node.h +++ b/src/node.h @@ -50,12 +50,12 @@ typedef struct node_t { const EVP_CIPHER *incipher; /* Cipher type for UDP packets received from him */ char *inkey; /* Cipher key and iv */ int inkeylength; /* Cipher key and iv length */ - EVP_CIPHER_CTX inctx; /* Cipher context */ + EVP_CIPHER_CTX *inctx; /* Cipher context */ const EVP_CIPHER *outcipher; /* Cipher type for UDP packets sent to him*/ char *outkey; /* Cipher key and iv */ int outkeylength; /* Cipher key and iv length */ - EVP_CIPHER_CTX outctx; /* Cipher context */ + EVP_CIPHER_CTX *outctx; /* Cipher context */ const EVP_MD *indigest; /* Digest type for MAC of packets received from him */ int inmaclength; /* Length of MAC */