summaryrefslogtreecommitdiff
path: root/auto_tests/tcp_relay_test.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2020-02-29 16:01:08 +0000
committeriphydf <iphydf@users.noreply.github.com>2020-03-02 14:23:44 +0000
commit0f7138c01006b35f2b1b477c30ae66ec243c21e1 (patch)
treecad019aebb27d64675c5937b68dcb33acfd64c77 /auto_tests/tcp_relay_test.c
parentf6c3ce6d1f23daec5d2e5d6e3c20408aba4c7e9c (diff)
Upgrade bazel to 2.1.1.
Removed av_test, because it depends on an ancient opencv that starts to really not exist on modern systems anymore.
Diffstat (limited to 'auto_tests/tcp_relay_test.c')
-rw-r--r--auto_tests/tcp_relay_test.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/auto_tests/tcp_relay_test.c b/auto_tests/tcp_relay_test.c
index 7d821c20..b9eea92d 100644
--- a/auto_tests/tcp_relay_test.c
+++ b/auto_tests/tcp_relay_test.c
@@ -8,10 +8,10 @@
8#include "check_compat.h" 8#include "check_compat.h"
9 9
10static uint8_t const key[] = { 10static uint8_t const key[] = {
11 0x02, 0x80, 0x7C, 0xF4, 0xF8, 0xBB, 0x8F, 0xB3, 11 0x3F, 0x0A, 0x45, 0xA2, 0x68, 0x36, 0x7C, 0x1B,
12 0x90, 0xCC, 0x37, 0x94, 0xBD, 0xF1, 0xE8, 0x44, 12 0xEA, 0x65, 0x2F, 0x25, 0x8C, 0x85, 0xF4, 0xA6,
13 0x9E, 0x9A, 0x83, 0x92, 0xC5, 0xD3, 0xF2, 0x20, 13 0x6D, 0xA7, 0x6B, 0xCA, 0xA6, 0x67, 0xA4, 0x9E,
14 0x00, 0x19, 0xDA, 0x9F, 0x1E, 0x81, 0x2E, 0x46, 14 0x77, 0x0B, 0xCC, 0x49, 0x17, 0xAB, 0x6A, 0x25,
15}; 15};
16 16
17int main(void) 17int main(void)
@@ -23,8 +23,8 @@ int main(void)
23 Tox *tox_tcp = tox_new_log(opts, nullptr, nullptr); 23 Tox *tox_tcp = tox_new_log(opts, nullptr, nullptr);
24 tox_options_free(opts); 24 tox_options_free(opts);
25 25
26 tox_bootstrap(tox_tcp, "78.46.73.141", 33445, key, nullptr); 26 tox_bootstrap(tox_tcp, "tox.initramfs.io", 33445, key, nullptr);
27 tox_add_tcp_relay(tox_tcp, "78.46.73.141", 33445, key, nullptr); 27 tox_add_tcp_relay(tox_tcp, "tox.initramfs.io", 33445, key, nullptr);
28 28
29 printf("Waiting for connection"); 29 printf("Waiting for connection");
30 30