summaryrefslogtreecommitdiff
path: root/code/test/vid/server.c
blob: 08653f10d1290e557358dd85327fc68fb3b55bb1 (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
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>

#include "server.h"
#include "util.h"

static ECPContext ctx_s;
static ECPSocket sock_s;
static ECPDHKey key_perma_s;
static ECPConnHandler handler_s;

static ECPConnection *conn;
static int is_open = 0;

#define CTYPE_TEST  0
#define MTYPE_MSG   8

static ssize_t handle_open(ECPConnection *c, ecp_seq_t sq, unsigned char t, unsigned char *m, ssize_t sz) {
    ssize_t rv = ecp_conn_handle_open(c, sq, t, m, sz);
    if (rv < 0) return rv;

    conn = c;
    is_open = 1;
    
    return rv;
}

ssize_t send_frame(unsigned char *buffer, size_t size, ecp_pts_t pts) {
    return ecp_send(conn, MTYPE_MSG, buffer, size);
}

int conn_is_open(void) {
    return is_open;
}

int init_server(char *address, char *key) {
    int rv;
    
    rv = ecp_init(&ctx_s);
    printf("ecp_init RV:%d\n", rv);
    
    if (!rv) rv = ecp_conn_handler_init(&handler_s);
    if (!rv) {
        handler_s.msg[ECP_MTYPE_OPEN] = handle_open;
        ctx_s.handler[CTYPE_TEST] = &handler_s;
    }
    
    if (!rv) rv = ecp_util_key_load(&ctx_s, &key_perma_s, key);
    printf("ecp_util_key_load RV:%d\n", rv);
    
    if (!rv) rv = ecp_sock_create(&sock_s, &ctx_s, &key_perma_s);
    printf("ecp_sock_create RV:%d\n", rv);

    if (!rv) rv = ecp_sock_open(&sock_s, address);
    printf("ecp_sock_open RV:%d\n", rv);
    
    if (!rv) rv = ecp_start_receiver(&sock_s);
    printf("ecp_start_receiver RV:%d\n", rv);
    
    return rv;
}