You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
338 B

#!/usr/bin/perl
use strict;
use warnings;
use Rtpengine::Test;
my $r = Rtpengine::Test->new();
my $a = $r->client();
my $b = $r->client();
$r->timer_once(3, sub { $b->answer($a, ICE => 'remove'); $a->start_rtp(); });
$r->timer_once(10, sub { $r->stop(); });
$a->offer($b, ICE => 'remove');
$b->start_rtp();
$r->run();
$a->delete();