toxcore/auto_tests/bootstrap_test.c

38 lines
945 B
C
Raw Normal View History

#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE 600
#endif
#include "helpers.h"
static uint8_t const key[] = {
0x15, 0xE9, 0xC3, 0x09, 0xCF, 0xCB, 0x79, 0xFD,
0xDF, 0x0E, 0xBA, 0x05, 0x7D, 0xAB, 0xB4, 0x9F,
0xE1, 0x5F, 0x38, 0x03, 0xB1, 0xBF, 0xF0, 0x65,
0x36, 0xAE, 0x2E, 0x5B, 0xA5, 0xE4, 0x69, 0x0E,
};
int main(void)
{
2018-02-19 01:50:50 +08:00
setvbuf(stdout, nullptr, _IONBF, 0);
2018-02-19 01:50:50 +08:00
Tox *tox_udp = tox_new_log(nullptr, nullptr, nullptr);
tox_bootstrap(tox_udp, "tox.ngc.zone", 33445, key, nullptr);
printf("Waiting for connection");
2018-02-19 01:50:50 +08:00
while (tox_self_get_connection_status(tox_udp) == TOX_CONNECTION_NONE) {
printf(".");
fflush(stdout);
2018-02-19 01:50:50 +08:00
tox_iterate(tox_udp, nullptr);
c_sleep(ITERATION_INTERVAL);
}
assert(tox_self_get_connection_status(tox_udp) == TOX_CONNECTION_UDP);
2018-02-19 01:50:50 +08:00
printf("Connection (UDP): %d\n", tox_self_get_connection_status(tox_udp));
2018-02-19 01:50:50 +08:00
tox_kill(tox_udp);
return 0;
}