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.
36 lines
574 B
36 lines
574 B
# client.pl - works with nt.cli
|
|
|
|
if (!defined($ARGV[0]))
|
|
{
|
|
print "You must specify an input file.\n";
|
|
goto end;
|
|
}
|
|
|
|
open(F, $ARGV[0]);
|
|
@lines = <F>;
|
|
close(F);
|
|
|
|
foreach $line (@lines)
|
|
{
|
|
goto p1;
|
|
if ($line =~ m/------- SDP.*-*/)
|
|
{
|
|
print $line;
|
|
}
|
|
|
|
p1:
|
|
|
|
if ($line =~ /Client root\: (.*)/) {
|
|
$root = $1;
|
|
}
|
|
|
|
if ($line =~ /Server address\: (.*)/) {
|
|
$server = $1;
|
|
print $root . "=" . $server . "\n";
|
|
$root = "";
|
|
$server = "";
|
|
}
|
|
}
|
|
|
|
end:
|
|
print "bye";
|