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
207 B

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