main.c 2.92 KB
Newer Older
Jason Fong's avatar
Jason Fong committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <pthread.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

#include "nat_traversal.h"

#define DEFAULT_SERVER_PORT 9988
#define MSG_BUF_SIZE 512

Fong's avatar
Fong committed
15
// use public stun servers to detect port allocation rule
Jason Fong's avatar
Jason Fong committed
16
17
18
19
20
21
static char *stun_servers[] = {
    "stun.ideasip.com",
    "stun.ekiga.net",
    "203.183.172.196"
};

Fong's avatar
Fong committed
22
23
24
// definition checked against extern declaration
int verbose = 0;

Jason Fong's avatar
Jason Fong committed
25
26
27
28
29
30
31
32
33
int main(int argc, char** argv)
{
    char* stun_server = stun_servers[0];
    char* local_host = "0.0.0.0";
    uint16_t stun_port = DEFAULT_STUN_SERVER_PORT;
    uint16_t local_port = DEFAULT_LOCAL_PORT;
    char* punch_server = NULL;
    uint32_t peer_id = 0;

Fong's avatar
Fong committed
34
    static char usage[] = "usage: [-h] [-H STUN_HOST] [-P STUN_PORT] [-s punch server] [-d id] [-i SOURCE_IP] [-p SOURCE_PORT] [-v verbose]\n";
Jason Fong's avatar
Jason Fong committed
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
    int opt;
    while ((opt = getopt (argc, argv, "H:h:P:p:s:d:i")) != -1)
    {
        switch (opt)
        {
            case 'h':
                printf("%s", usage);
                break;
            case 'H':
                stun_server = optarg;
                break;
            case 'P':
                stun_port = atoi(optarg);
                break;
            case 's':
                punch_server = optarg;
                break;
            case 'p':
                local_port = atoi(optarg);
                break;
            case 'd':
                peer_id = atoi(optarg);
                break;
            case 'i':
                local_host = optarg;
                break;
Fong's avatar
Fong committed
61
62
            case 'v':
                verbose = 1;
Jason Fong's avatar
Jason Fong committed
63
64
65
66
67
68
69
70
71
72
73
74
            case '?':
            default:
                printf("invalid option: %c\n", opt);
                printf("%s", usage);

                return -1;
        }
    }

    char ext_ip[16] = {0};
    uint16_t ext_port = 0;

Fong's avatar
Fong committed
75
    // TODO we should try another STUN server if failed
Jason Fong's avatar
Jason Fong committed
76
77
78
79
80
81
82
83
84
85
86
87
88
89
    nat_type type = detect_nat_type(stun_server, stun_port, local_host, local_port, ext_ip, &ext_port);

    printf("NAT type: %s\n", get_nat_desc(type));
    if (ext_port) {
        printf("external address: %s:%d\n", ext_ip, ext_port);
    } else {
        return -1;
    }

    if (!punch_server) {
        printf("please specify punch server\n");
        return -1;
    }
    struct peer_info self;
Fong's avatar
Fong committed
90
91
92
    strncpy(self.ip, ext_ip, 16);
    self.port = ext_port;
    self.type = type;
Jason Fong's avatar
Jason Fong committed
93
94
95
96
97
98
99
100
101
102
103
104
105
106

    struct sockaddr_in server_addr;
    server_addr.sin_family = AF_INET;
    server_addr.sin_addr.s_addr = inet_addr(punch_server);
    server_addr.sin_port = htons(DEFAULT_SERVER_PORT);

    client c;
    if (init(self, server_addr, &c)) {
        printf("init failed\n");

        return -1;
    }

    if (peer_id) {
Fong's avatar
Fong committed
107
        printf("connecting to peer %d\n", peer_id);
Jason Fong's avatar
Jason Fong committed
108
        if (connect_to_peer(&c, peer_id) < 0) {
Fong's avatar
Fong committed
109
            printf("failed to connect to peer %d\n", peer_id);
Jason Fong's avatar
Jason Fong committed
110
111
112
113
114

            return -1;
        }
    }

Fong's avatar
Fong committed
115
116
117
    for (; ;) {
    }

Jason Fong's avatar
Jason Fong committed
118
119
    return 0;
}