Skip to content

Commit

Permalink
Add mechanism for recovering from disconnections in conferences
Browse files Browse the repository at this point in the history
  * 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
  • Loading branch information
zugz committed Sep 5, 2018
1 parent 6872c14 commit 1b23222
Show file tree
Hide file tree
Showing 15 changed files with 773 additions and 277 deletions.
2 changes: 1 addition & 1 deletion auto_tests/conference_double_invite_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ int main(void)
{
setvbuf(stdout, nullptr, _IONBF, 0);

run_auto_test(2, conference_double_invite_test);
run_auto_test(2, conference_double_invite_test, false);
return 0;
}
2 changes: 1 addition & 1 deletion auto_tests/conference_peer_nick_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,6 @@ int main(void)
{
setvbuf(stdout, nullptr, _IONBF, 0);

run_auto_test(2, conference_peer_nick_test);
run_auto_test(2, conference_peer_nick_test, false);
return 0;
}
Loading

0 comments on commit 1b23222

Please sign in to comment.