Files
strongswan-ext/programs/calcgoo/calcgoo.in
T
Martin Willi 997358a6c4 - import of strongswan-2.7.0
- applied patch for charon
2006-04-28 07:14:48 +00:00

44 lines
700 B
Perl

#!/usr/bin/perl
$MODULE_GOO_LIST="@MODULE_GOO_LIST@";
@goo = split(/\s+/,$MODULE_GOO_LIST);
$sep="(";
$goore=" ";
#print "GOO: ",join('|',@goo),"\n";
foreach $sym (@goo) {
$goore=${goore}.${sep}.${sym};
$sep="|";
}
$goore=${goore}.")_R(smp_){0,1}([0-9A-F]{8})";
#print "GOORE: $goore\n";
while(<>) {
chomp;
if(/$goore/io) {
$sym=$1;
$goosym=$3;
$bingoo=hex($goosym);
if($2 eq "smp_") {
$bingoo++;
}
#print STDERR "Processing $goosym (from $_)\n";
$bingoo{$sym}=$bingoo;
}
}
$wholegoo=0;
foreach $sym (keys %bingoo) {
$wholegoo=$wholegoo ^ $bingoo{$sym};
}
print sprintf("%08x", $wholegoo)."\n";
# Local variables::
# mode: perl
# End variables::