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.
rtpengine/t/test-packetloss.pl

34 lines
530 B

#!/usr/bin/perl
use strict;
use warnings;
use NGCP::Rtpengine::Test;
use IO::Socket;
my $r = NGCP::Rtpengine::Test->new();
my ($a, $b) = $r->client_pair(
{
sockdomain => &Socket::AF_INET,
packetloss => 5,
},
{
sockdomain => &Socket::AF_INET,
packetloss => 10,
}
);
$r->timer_once(1, sub {
$b->answer($a, ICE => 'remove');
$a->start_rtp();
$a->start_rtcp();
});
$r->timer_once(60, sub { $r->stop(); });
$a->offer($b, ICE => 'remove');
$b->start_rtp();
$b->start_rtcp();
$r->run();
$a->teardown(dump => 1);