summaryrefslogtreecommitdiff
path: root/ecp/test/vc_client.c
blob: a32b22ad2772f80f7a2069257bc890dd7d3c9cca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <stdio.h>

#include <ecp/core.h>
#include <ecp/vconn/vconn.h>

#include <util.h>

#include "init_vconn.h"

ECPContext ctx;
ECPSocket sock;
ECPConnHandler handler;
ECPConnHandler vconn_handler;
ECPConnHandler vlink_handler;
ECPConnection conn;
ECPVConnOutb vconn[ECP_MAX_PARENT];

#define CTYPE_TEST  0
#define MTYPE_MSG   0

static int handle_open(ECPConnection *conn, ECP2Buffer *b) {
    char *_msg = "PERA JE CAR!";
    ssize_t rv;

    printf("Press ENTER key to start\n");
    while(getchar()!='\n');

    rv = ecp_msg_send(conn, MTYPE_MSG, (unsigned char *)_msg, strlen(_msg)+1);

    return ECP_OK;
}

static ssize_t handle_msg(ECPConnection *conn, ecp_seq_t seq, unsigned char mtype, unsigned char *msg, size_t msg_size, ECP2Buffer *b) {
    printf("MSG:%s size:%ld\n", msg, msg_size);

    return msg_size;
}

static void usage(char *arg) {
    fprintf(stderr, "Usage: %s <server.pub> <address> <vcs0.pub> [ ... <vcsN.pub> ]\n", arg);
    exit(1);
}

int main(int argc, char *argv[]) {
    ECPDHKey key_perma;
    ecp_tr_addr_t addr;
    ecp_ecdh_public_t public;
    ecp_ecdh_public_t vconn_pub[ECP_MAX_PARENT];
    int rv, i;

    if ((argc < 4) || (argc > 3 + ECP_MAX_PARENT)) usage(argv[0]);

    rv = ecp_init(&ctx, &vconn_handler, &vlink_handler);
    LOG("ecp_init", rv);

    ecp_conn_handler_init(&handler, handle_open, NULL, handle_msg, NULL);
    ecp_ctx_set_handler(&ctx, CTYPE_TEST, &handler);

    rv = ecp_dhkey_gen(&key_perma);
    LOG("ecp_dhkey_gen", rv);

    rv = ecp_sock_create(&sock, &ctx, &key_perma);
    LOG("ecp_sock_create", rv);

    rv = ecp_vconn_sock_create(&sock);
    LOG("ecp_vconn_sock_create", rv);

    rv = ecp_sock_open(&sock, NULL);
    LOG("ecp_sock_open", rv);

    rv = ecp_start_receiver(&sock);
    LOG("ecp_start_receiver", rv);

    rv = ecp_util_load_key(argv[1], &public, NULL);
    LOG("ecp_util_load_key", rv);

    rv = ecp_addr_init(&addr, argv[2]);
    LOG("ecp_addr_init", rv);

    for (i=3; i<argc; i++) {
        rv = ecp_util_load_key(argv[i], &vconn_pub[i-3], NULL);
        LOG("ecp_util_load_key", rv);
    }

    ecp_conn_init(&conn, &sock, CTYPE_TEST);
    ecp_vconn_init(vconn, argc-3, &conn, &sock);
    rv = ecp_vconn_open(vconn, vconn_pub, &addr, &public);
    LOG("ecp_vconn_open", rv);

    while (1) sleep(1);
}