From 25de5e761daab8b897a4f09ff8503e6f43c299f9 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Wed, 3 May 2017 21:10:08 +0200 Subject: initial commit --- code/test/server.c | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 code/test/server.c (limited to 'code/test/server.c') diff --git a/code/test/server.c b/code/test/server.c new file mode 100644 index 0000000..a03267e --- /dev/null +++ b/code/test/server.c @@ -0,0 +1,117 @@ +#include +#include +#include + +#include + +ECPContext ctx_s; +ECPSocket sock_s; +ECPDHKey key_perma_s; +ECPConnHandler handler_s; + +ECPContext ctx_c; +ECPSocket sock_c; +ECPDHKey key_perma_c; +ECPConnHandler handler_c; + +ECPNode node; +ECPConnection conn; + +#define PTYPE_MSG 16 + +ssize_t handle_open_c(ECPConnection *c, unsigned char t, unsigned char *p, ssize_t s) { + uint32_t seq = 0; + + if (s < 0) { + printf("OPEN ERR:%ld\n", s); + return 0; + } + + unsigned char payload[ECP_SIZE_PLD(1000)]; + unsigned char *buf = ecp_pld_get_buf(payload); + char *msg = "PERA JE CAR!"; + + strcpy((char *)buf, msg); + ssize_t _rv = ecp_send(c, PTYPE_MSG, payload, 1000); + return 0; +} + +ssize_t handle_msg_c(ECPConnection *c, unsigned char t, unsigned char *p, ssize_t s) { + printf("MSG C:%s size:%ld\n", p, s); + + return s; +} + +ssize_t handle_msg_s(ECPConnection *c, unsigned char t, unsigned char *p, ssize_t s) { + printf("MSG S:%s size:%ld\n", p, s); + + unsigned char payload[ECP_SIZE_PLD(1000)]; + unsigned char *buf = ecp_pld_get_buf(payload); + char *msg = "VAISTINU JE CAR!"; + + strcpy((char *)buf, msg); + ssize_t _rv = ecp_send(c, PTYPE_MSG, payload, 1000); + + return s; +} + +int conn_create(ECPConnection *c, unsigned char *p, size_t s) { + c->handler = &handler_s; + return ECP_OK; +} + +int main(int argc, char *argv[]) { + int rv; + + rv = ecp_init(&ctx_s); + printf("ecp_init RV:%d\n", rv); + + 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_conn_hander_init(&handler_s); + + handler_s.f[PTYPE_MSG] = handle_msg_s; + sock_s.conn_create = conn_create; + + 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); + + rv = ecp_init(&ctx_c); + printf("ecp_init RV:%d\n", rv); + + 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, "127.0.0.1:3000", &key_perma_s.public); + printf("ecp_node_init RV:%d\n", rv); + + rv = ecp_conn_create(&conn, &sock_c); + printf("ecp_conn_create RV:%d\n", rv); + + rv = ecp_conn_hander_init(&handler_c); + printf("ecp_conn_hander_init RV:%d\n", rv); + + handler_c.f[ECP_PTYPE_OPEN] = handle_open_c; + handler_c.f[PTYPE_MSG] = handle_msg_c; + + rv = ecp_conn_open(&conn, &node, &handler_c); + printf("ecp_conn_open RV:%d\n", rv); + + while (1) sleep(1); +} \ No newline at end of file -- cgit v1.2.3