summaryrefslogtreecommitdiff
path: root/auto_tests
diff options
context:
space:
mode:
authorRobin Lindén <dev@robinlinden.eu>2018-03-12 22:43:18 +0100
committeriphydf <iphydf@users.noreply.github.com>2018-06-16 22:50:07 +0000
commit2f80e2206cf33797264916b4e4a1f4be32d9c399 (patch)
tree20729163dbbe3e9f8c9f4a9cf6465eae3143c724 /auto_tests
parentadca70111f0dd2e73cb972c99582239b3788d8e3 (diff)
Only check full rtp offset if RTP_LARGE_FRAME is set
Diffstat (limited to 'auto_tests')
-rw-r--r--auto_tests/bootstrap_test.c10
-rw-r--r--auto_tests/tcp_relay_test.c12
2 files changed, 11 insertions, 11 deletions
diff --git a/auto_tests/bootstrap_test.c b/auto_tests/bootstrap_test.c
index 12cfabcf..fd46d09c 100644
--- a/auto_tests/bootstrap_test.c
+++ b/auto_tests/bootstrap_test.c
@@ -5,10 +5,10 @@
5#include "helpers.h" 5#include "helpers.h"
6 6
7static uint8_t const key[] = { 7static uint8_t const key[] = {
8 0xF4, 0x04, 0xAB, 0xAA, 0x1C, 0x99, 0xA9, 0xD3, 8 0x15, 0xE9, 0xC3, 0x09, 0xCF, 0xCB, 0x79, 0xFD,
9 0x7D, 0x61, 0xAB, 0x54, 0x89, 0x8F, 0x56, 0x79, 9 0xDF, 0x0E, 0xBA, 0x05, 0x7D, 0xAB, 0xB4, 0x9F,
10 0x3E, 0x1D, 0xEF, 0x8B, 0xD4, 0x6B, 0x10, 0x38, 10 0xE1, 0x5F, 0x38, 0x03, 0xB1, 0xBF, 0xF0, 0x65,
11 0xB9, 0xD8, 0x22, 0xE8, 0x46, 0x0F, 0xAB, 0x67, 11 0x36, 0xAE, 0x2E, 0x5B, 0xA5, 0xE4, 0x69, 0x0E,
12}; 12};
13 13
14int main(void) 14int main(void)
@@ -17,7 +17,7 @@ int main(void)
17 17
18 Tox *tox_udp = tox_new_log(nullptr, nullptr, nullptr); 18 Tox *tox_udp = tox_new_log(nullptr, nullptr, nullptr);
19 19
20 tox_bootstrap(tox_udp, "node.tox.biribiri.org", 33445, key, nullptr); 20 tox_bootstrap(tox_udp, "tox.ngc.zone", 33445, key, nullptr);
21 21
22 printf("Waiting for connection"); 22 printf("Waiting for connection");
23 23
diff --git a/auto_tests/tcp_relay_test.c b/auto_tests/tcp_relay_test.c
index 4cda94f2..84fb92da 100644
--- a/auto_tests/tcp_relay_test.c
+++ b/auto_tests/tcp_relay_test.c
@@ -5,10 +5,10 @@
5#include "helpers.h" 5#include "helpers.h"
6 6
7static uint8_t const key[] = { 7static uint8_t const key[] = {
8 0xF4, 0x04, 0xAB, 0xAA, 0x1C, 0x99, 0xA9, 0xD3, 8 0x15, 0xE9, 0xC3, 0x09, 0xCF, 0xCB, 0x79, 0xFD,
9 0x7D, 0x61, 0xAB, 0x54, 0x89, 0x8F, 0x56, 0x79, 9 0xDF, 0x0E, 0xBA, 0x05, 0x7D, 0xAB, 0xB4, 0x9F,
10 0x3E, 0x1D, 0xEF, 0x8B, 0xD4, 0x6B, 0x10, 0x38, 10 0xE1, 0x5F, 0x38, 0x03, 0xB1, 0xBF, 0xF0, 0x65,
11 0xB9, 0xD8, 0x22, 0xE8, 0x46, 0x0F, 0xAB, 0x67, 11 0x36, 0xAE, 0x2E, 0x5B, 0xA5, 0xE4, 0x69, 0x0E,
12}; 12};
13 13
14int main(void) 14int main(void)
@@ -20,8 +20,8 @@ int main(void)
20 Tox *tox_tcp = tox_new_log(opts, nullptr, nullptr); 20 Tox *tox_tcp = tox_new_log(opts, nullptr, nullptr);
21 tox_options_free(opts); 21 tox_options_free(opts);
22 22
23 tox_bootstrap(tox_tcp, "node.tox.biribiri.org", 33445, key, nullptr); 23 tox_bootstrap(tox_tcp, "tox.ngc.zone", 33445, key, nullptr);
24 tox_add_tcp_relay(tox_tcp, "node.tox.biribiri.org", 33445, key, nullptr); 24 tox_add_tcp_relay(tox_tcp, "tox.ngc.zone", 33445, key, nullptr);
25 25
26 printf("Waiting for connection"); 26 printf("Waiting for connection");
27 27