diff options
author | Uros Majstorovic <majstor@majstor.org> | 2017-05-23 04:12:25 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2017-05-23 04:12:25 +0200 |
commit | 922e8313f2b3f6157a61b3c867fdc3832bb92a68 (patch) | |
tree | e139071e3d012eb70627e83e314e1f02eab5e1db /code/core.h | |
parent | db066407cbcc5905c21314000acbe34e5d6968ef (diff) |
implemented exec
Diffstat (limited to 'code/core.h')
-rw-r--r-- | code/core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/code/core.h b/code/core.h index 929461f..33dd6d2 100644 --- a/code/core.h +++ b/code/core.h @@ -290,6 +290,7 @@ int ecp_conn_handle_new(ECPSocket *sock, ECPConnection **_conn, ECPConnection *p ssize_t ecp_conn_handle_open(ECPConnection *conn, unsigned char mtype, unsigned char *msg, ssize_t size); ssize_t ecp_conn_handle_kget(ECPConnection *conn, unsigned char mtype, unsigned char *msg, ssize_t size); ssize_t ecp_conn_handle_kput(ECPConnection *conn, unsigned char mtype, unsigned char *msg, ssize_t size); +ssize_t ecp_conn_handle_exec(ECPConnection *conn, unsigned char mtype, unsigned char *msg, ssize_t size); int ecp_conn_dhkey_new(ECPConnection *conn); int ecp_conn_dhkey_new_pub(ECPConnection *conn, unsigned char idx, unsigned char *public); |