summaryrefslogtreecommitdiff
path: root/auto_tests/lossy_packet_test.c
diff options
context:
space:
mode:
authorzugz <mbays+tox@sdf.org>2018-07-25 08:43:48 +0100
committerzugz (tox) <mbays+tox@sdf.org>2018-09-05 20:56:26 +0200
commit1b2322284f0b688af3a349fe4331be15a565084c (patch)
tree7651c11b4ec1edd927151e9655727fb0b2365a7c /auto_tests/lossy_packet_test.c
parent6872c14e1a02445d945623ee6e85230c5d7ecbce (diff)
Add mechanism for recovering from disconnections in conferences
* add freezing and unfreezing of peers * add rejoin packet * revise handling of temporary invited connections * rename "peer kill" packet to "peer leave" packet * test rejoining in conference test * use custom clock in conference test
Diffstat (limited to 'auto_tests/lossy_packet_test.c')
-rw-r--r--auto_tests/lossy_packet_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/lossy_packet_test.c b/auto_tests/lossy_packet_test.c
index 10d4e505..5080b006 100644
--- a/auto_tests/lossy_packet_test.c
+++ b/auto_tests/lossy_packet_test.c
@@ -57,6 +57,6 @@ int main(void)
57{ 57{
58 setvbuf(stdout, nullptr, _IONBF, 0); 58 setvbuf(stdout, nullptr, _IONBF, 0);
59 59
60 run_auto_test(2, test_lossy_packet); 60 run_auto_test(2, test_lossy_packet, false);
61 return 0; 61 return 0;
62} 62}