diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-01-11 18:03:01 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-01-11 18:03:01 +0100 |
commit | dea99b85dc52341265ae2e8463afee8a9709127a (patch) | |
tree | 4d4c52d046e76374314d5c88137e406a3d238ec2 /code/core/vconn/vconn.h | |
parent | eb8c9fe176721d5e8dd24febec88e1665ca70c26 (diff) |
fe310 platform introdiced
Diffstat (limited to 'code/core/vconn/vconn.h')
-rw-r--r-- | code/core/vconn/vconn.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/code/core/vconn/vconn.h b/code/core/vconn/vconn.h new file mode 100644 index 0000000..07832c7 --- /dev/null +++ b/code/core/vconn/vconn.h @@ -0,0 +1,22 @@ +#define ECP_CTYPE_VCONN 1 +#define ECP_CTYPE_VLINK 2 + +#define ECP_MTYPE_RELAY 0x08 +#define ECP_MTYPE_EXEC 0x09 + +typedef struct ECPVConnection { + ECPConnection b; + ECPConnection *next; +} ECPVConnection; + +typedef struct ECPVConnIn { + ECPConnection b; + unsigned char key_next[ECP_MAX_NODE_KEY][ECP_ECDH_SIZE_KEY]; + unsigned char key_next_curr; + unsigned char key_out[ECP_ECDH_SIZE_KEY]; +} ECPVConnIn; + +int ecp_ctx_vconn_init(ECPContext *ctx); + +int ecp_vconn_init(ECPConnection *conn, ECPNode *conn_node, ECPVConnection vconn[], ECPNode vconn_node[], int size); +int ecp_vconn_open(ECPConnection *conn, ECPNode *conn_node, ECPVConnection vconn[], ECPNode vconn_node[], int size); |