2018-07-17 06:46:02 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
2018-02-19 01:50:50 +08:00
|
|
|
#endif
|
|
|
|
|
2018-07-17 06:46:02 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "../testing/misc_tools.h"
|
|
|
|
#include "check_compat.h"
|
2018-02-19 01:50:50 +08:00
|
|
|
|
|
|
|
static uint8_t const key[] = {
|
2020-03-01 00:01:08 +08:00
|
|
|
0x3F, 0x0A, 0x45, 0xA2, 0x68, 0x36, 0x7C, 0x1B,
|
|
|
|
0xEA, 0x65, 0x2F, 0x25, 0x8C, 0x85, 0xF4, 0xA6,
|
|
|
|
0x6D, 0xA7, 0x6B, 0xCA, 0xA6, 0x67, 0xA4, 0x9E,
|
|
|
|
0x77, 0x0B, 0xCC, 0x49, 0x17, 0xAB, 0x6A, 0x25,
|
2018-02-19 01:50:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
setvbuf(stdout, nullptr, _IONBF, 0);
|
|
|
|
|
|
|
|
struct Tox_Options *opts = tox_options_new(nullptr);
|
|
|
|
tox_options_set_udp_enabled(opts, false);
|
|
|
|
Tox *tox_tcp = tox_new_log(opts, nullptr, nullptr);
|
|
|
|
tox_options_free(opts);
|
|
|
|
|
2020-03-01 00:01:08 +08:00
|
|
|
tox_bootstrap(tox_tcp, "tox.initramfs.io", 33445, key, nullptr);
|
2020-04-14 04:37:31 +08:00
|
|
|
|
|
|
|
Tox_Err_Bootstrap tcp_err;
|
|
|
|
tox_add_tcp_relay(tox_tcp, "tox.initramfs.io", 33445, key, &tcp_err);
|
|
|
|
ck_assert_msg(tcp_err == TOX_ERR_BOOTSTRAP_OK,
|
|
|
|
"attempting to add tcp relay returned with an error: %d",
|
|
|
|
tcp_err);
|
2018-02-19 01:50:50 +08:00
|
|
|
|
|
|
|
printf("Waiting for connection");
|
|
|
|
|
2018-08-25 20:16:54 +08:00
|
|
|
do {
|
2018-02-19 01:50:50 +08:00
|
|
|
printf(".");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
tox_iterate(tox_tcp, nullptr);
|
|
|
|
c_sleep(ITERATION_INTERVAL);
|
2018-08-25 20:16:54 +08:00
|
|
|
} while (tox_self_get_connection_status(tox_tcp) == TOX_CONNECTION_NONE);
|
2018-02-19 01:50:50 +08:00
|
|
|
|
2018-10-09 05:05:14 +08:00
|
|
|
const Tox_Connection status = tox_self_get_connection_status(tox_tcp);
|
2018-07-17 06:46:02 +08:00
|
|
|
ck_assert_msg(status == TOX_CONNECTION_TCP,
|
|
|
|
"expected TCP connection, but got %d", status);
|
|
|
|
printf("Connection (TCP): %d\n", status);
|
2018-02-19 01:50:50 +08:00
|
|
|
|
|
|
|
tox_kill(tox_tcp);
|
|
|
|
return 0;
|
|
|
|
}
|