diff options
author | Uros Majstorovic <majstor@majstor.org> | 2019-10-19 19:37:03 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2019-10-19 19:37:03 +0200 |
commit | 84735c23109b77e0691da208d31c374aa943b257 (patch) | |
tree | 2ff1430be30807c326c3b8274b0d0c0db7e802a2 /code/test/basic.c | |
parent | 3a5f92b720afcb4adac61174dbefefd420aa5319 (diff) |
fixed transport interface; risc-v transport updated to support eos sock interface
Diffstat (limited to 'code/test/basic.c')
-rw-r--r-- | code/test/basic.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/code/test/basic.c b/code/test/basic.c index 85c4f31..8268599 100644 --- a/code/test/basic.c +++ b/code/test/basic.c @@ -22,13 +22,13 @@ ECPConnection conn; ssize_t handle_open_c(ECPConnection *conn, ecp_seq_t sq, unsigned char t, unsigned char *p, ssize_t s, ECP2Buffer *b) { uint32_t seq = 0; - + ecp_conn_handle_open(conn, sq, t, p, s, b); if (s < 0) { printf("OPEN ERR:%ld\n", s); return s; } - + char *msg = "PERA JE CAR!"; unsigned char buf[1000]; @@ -57,23 +57,23 @@ ssize_t handle_msg_s(ECPConnection *conn, ecp_seq_t sq, unsigned char t, unsigne int main(int argc, char *argv[]) { int rv; - + rv = ecp_init(&ctx_s); printf("ecp_init RV:%d\n", rv); - + rv = ecp_conn_handler_init(&handler_s); handler_s.msg[MTYPE_MSG] = handle_msg_s; ctx_s.handler[CTYPE_TEST] = &handler_s; - + rv = ecp_dhkey_generate(&ctx_s, &key_perma_s); printf("ecp_dhkey_generate RV:%d\n", rv); - + rv = ecp_sock_create(&sock_s, &ctx_s, &key_perma_s); printf("ecp_sock_create RV:%d\n", rv); rv = ecp_sock_open(&sock_s, "0.0.0.0:3000"); printf("ecp_sock_open RV:%d\n", rv); - + rv = ecp_start_receiver(&sock_s); printf("ecp_start_receiver RV:%d\n", rv); @@ -84,20 +84,20 @@ int main(int argc, char *argv[]) { handler_c.msg[ECP_MTYPE_OPEN] = handle_open_c; handler_c.msg[MTYPE_MSG] = handle_msg_c; ctx_c.handler[CTYPE_TEST] = &handler_c; - + rv = ecp_dhkey_generate(&ctx_c, &key_perma_c); printf("ecp_dhkey_generate RV:%d\n", rv); - + rv = ecp_sock_create(&sock_c, &ctx_c, &key_perma_c); printf("ecp_sock_create RV:%d\n", rv); rv = ecp_sock_open(&sock_c, NULL); printf("ecp_sock_open RV:%d\n", rv); - + rv = ecp_start_receiver(&sock_c); printf("ecp_start_receiver RV:%d\n", rv); - rv = ecp_node_init(&ctx_c, &node, &key_perma_s.public, "127.0.0.1:3000"); + rv = ecp_node_init(&node, &key_perma_s.public, "127.0.0.1:3000"); printf("ecp_node_init RV:%d\n", rv); rv = ecp_conn_create(&conn, &sock_c, CTYPE_TEST); @@ -105,6 +105,6 @@ int main(int argc, char *argv[]) { rv = ecp_conn_open(&conn, &node); printf("ecp_conn_open RV:%d\n", rv); - + while (1) sleep(1); }
\ No newline at end of file |