mirror of https://github.com/sipwise/rtpengine.git
parent
65d4752486
commit
af788f159a
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Rtpengine::Test;
|
||||
use IO::Socket;
|
||||
|
||||
my $r = Rtpengine::Test->new(host => '192.168.1.128');
|
||||
my ($a, $b) = $r->client_pair(
|
||||
{sockdomain => &Socket::AF_INET},
|
||||
{sockdomain => &Socket::AF_INET}
|
||||
);
|
||||
|
||||
$r->timer_once(3, sub { $b->answer($a, ICE => 'remove', flags => ['unidirectional']); });
|
||||
$r->timer_once(10, sub { $r->stop(); });
|
||||
|
||||
$a->offer($b, ICE => 'remove', flags => ['unidirectional']);
|
||||
$b->start_rtp();
|
||||
|
||||
$r->run();
|
||||
|
||||
$a->delete();
|
||||
Loading…
Reference in new issue