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.
 
 
 
 
 
 

15 lines
232 B

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