1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4 
5 #include <stdio.h>
6 
7 #include "../testing/misc_tools.h"
8 #include "check_compat.h"
9 
10 static uint8_t const key1[] = {
11     0x02, 0x80, 0x7C, 0xF4, 0xF8, 0xBB, 0x8F, 0xB3,
12     0x90, 0xCC, 0x37, 0x94, 0xBD, 0xF1, 0xE8, 0x44,
13     0x9E, 0x9A, 0x83, 0x92, 0xC5, 0xD3, 0xF2, 0x20,
14     0x00, 0x19, 0xDA, 0x9F, 0x1E, 0x81, 0x2E, 0x46,
15 };
16 
17 static uint8_t const key2[] = {
18     0x3F, 0x0A, 0x45, 0xA2, 0x68, 0x36, 0x7C, 0x1B,
19     0xEA, 0x65, 0x2F, 0x25, 0x8C, 0x85, 0xF4, 0xA6,
20     0x6D, 0xA7, 0x6B, 0xCA, 0xA6, 0x67, 0xA4, 0x9E,
21     0x77, 0x0B, 0xCC, 0x49, 0x17, 0xAB, 0x6A, 0x25,
22 };
23 
main(void)24 int main(void)
25 {
26     setvbuf(stdout, nullptr, _IONBF, 0);
27 
28     struct Tox_Options *opts = tox_options_new(nullptr);
29     tox_options_set_udp_enabled(opts, false);
30     Tox *tox_tcp = tox_new_log(opts, nullptr, nullptr);
31     tox_options_free(opts);
32 
33     tox_bootstrap(tox_tcp, "78.46.73.141", 33445, key1, nullptr);
34     tox_bootstrap(tox_tcp, "tox.initramfs.io", 33445, key2, nullptr);
35 
36     Tox_Err_Bootstrap tcp_err;
37     tox_add_tcp_relay(tox_tcp, "78.46.73.141", 33445, key1, &tcp_err);
38     ck_assert_msg(tcp_err == TOX_ERR_BOOTSTRAP_OK,
39                   "attempting to add tcp relay returned with an error: %d",
40                   tcp_err);
41     tox_add_tcp_relay(tox_tcp, "tox.initramfs.io", 33445, key2, &tcp_err);
42     ck_assert_msg(tcp_err == TOX_ERR_BOOTSTRAP_OK,
43                   "attempting to add tcp relay returned with an error: %d",
44                   tcp_err);
45 
46     printf("Waiting for connection");
47 
48     do {
49         printf(".");
50         fflush(stdout);
51 
52         tox_iterate(tox_tcp, nullptr);
53         c_sleep(ITERATION_INTERVAL);
54     } while (tox_self_get_connection_status(tox_tcp) == TOX_CONNECTION_NONE);
55 
56     const Tox_Connection status = tox_self_get_connection_status(tox_tcp);
57     ck_assert_msg(status == TOX_CONNECTION_TCP,
58                   "expected TCP connection, but got %d", status);
59     printf("Connection (TCP): %d\n", status);
60 
61     tox_kill(tox_tcp);
62     return 0;
63 }
64