From 25762246461186b92b71d256e098e0a7640875f1 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Tue, 6 Jun 2017 15:16:15 +0200 Subject: tests updated --- code/test/proxy.c | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) (limited to 'code/test/proxy.c') diff --git a/code/test/proxy.c b/code/test/proxy.c index cfea6c1..ae7cce5 100644 --- a/code/test/proxy.c +++ b/code/test/proxy.c @@ -5,35 +5,50 @@ #include "core.h" #include "util.h" +#include "proxy.h" ECPContext ctx; ECPSocket sock; ECPDHKey key_perma; +ECPNode node; +ECPConnection conn; + static void usage(char *arg) { - fprintf(stderr, "Usage: %s [address]\n", arg); + fprintf(stderr, "Usage: %s
[node.pub]\n", arg); exit(1); } int main(int argc, char *argv[]) { int rv; - if (argc != 2) usage(argv[0]); + if ((argc < 3) || (argc > 4)) usage(argv[0]); rv = ecp_init(&ctx); printf("ecp_init RV:%d\n", rv); - rv = ecp_util_key_load(&ctx, &key_perma, argv[1]); + rv = ecp_util_key_load(&ctx, &key_perma, argv[2]); printf("ecp_util_key_load RV:%d\n", rv); rv = ecp_sock_create(&sock, &ctx, &key_perma); printf("ecp_sock_create RV:%d\n", rv); - rv = ecp_sock_open(&sock, "0.0.0.0:3000"); + rv = ecp_sock_open(&sock, argv[1]); printf("ecp_sock_open RV:%d\n", rv); rv = ecp_start_receiver(&sock); printf("ecp_start_receiver RV:%d\n", rv); + + if (argc == 4) { + rv = ecp_util_node_load(&ctx, &node, argv[3]); + printf("ecp_util_node_load RV:%d\n", rv); + + rv = ecp_conn_create(&conn, &sock, ECP_CTYPE_PROXYB); + printf("ecp_conn_create RV:%d\n", rv); + + rv = ecp_conn_open(&conn, &node); + printf("ecp_conn_open RV:%d\n", rv); + } while (1) sleep(1); } \ No newline at end of file -- cgit v1.2.3