summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2020-03-15 23:53:59 +0000
committeriphydf <iphydf@users.noreply.github.com>2020-03-15 23:53:59 +0000
commit52696a06860a1c099273e3f758e59733224bfe4d (patch)
treefc59b367d9609928c5f970d97dfbd5cd44b6963d
parent52655b0c1b8b32ce373498391df868d39a1e2834 (diff)
Add another bootstrap node to the bootstrap test.
Hopefully not both will be down at the same time.
-rw-r--r--auto_tests/bootstrap_test.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/auto_tests/bootstrap_test.c b/auto_tests/bootstrap_test.c
index 0552b313..bc2692cf 100644
--- a/auto_tests/bootstrap_test.c
+++ b/auto_tests/bootstrap_test.c
@@ -7,20 +7,28 @@
7#include "../testing/misc_tools.h" 7#include "../testing/misc_tools.h"
8#include "check_compat.h" 8#include "check_compat.h"
9 9
10static uint8_t const key[] = { 10static uint8_t const key1[] = {
11 0x02, 0x80, 0x7C, 0xF4, 0xF8, 0xBB, 0x8F, 0xB3, 11 0x02, 0x80, 0x7C, 0xF4, 0xF8, 0xBB, 0x8F, 0xB3,
12 0x90, 0xCC, 0x37, 0x94, 0xBD, 0xF1, 0xE8, 0x44, 12 0x90, 0xCC, 0x37, 0x94, 0xBD, 0xF1, 0xE8, 0x44,
13 0x9E, 0x9A, 0x83, 0x92, 0xC5, 0xD3, 0xF2, 0x20, 13 0x9E, 0x9A, 0x83, 0x92, 0xC5, 0xD3, 0xF2, 0x20,
14 0x00, 0x19, 0xDA, 0x9F, 0x1E, 0x81, 0x2E, 0x46, 14 0x00, 0x19, 0xDA, 0x9F, 0x1E, 0x81, 0x2E, 0x46,
15}; 15};
16 16
17static 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
17int main(void) 24int main(void)
18{ 25{
19 setvbuf(stdout, nullptr, _IONBF, 0); 26 setvbuf(stdout, nullptr, _IONBF, 0);
20 27
21 Tox *tox_udp = tox_new_log(nullptr, nullptr, nullptr); 28 Tox *tox_udp = tox_new_log(nullptr, nullptr, nullptr);
22 29
23 tox_bootstrap(tox_udp, "78.46.73.141", 33445, key, nullptr); 30 tox_bootstrap(tox_udp, "78.46.73.141", 33445, key1, nullptr);
31 tox_bootstrap(tox_udp, "tox.initramfs.io", 33445, key2, nullptr);
24 32
25 printf("Waiting for connection"); 33 printf("Waiting for connection");
26 34