App-PaloAlto-PolicyVerify
view release on metacpan or search on metacpan
lib/App/PaloAlto/PolicyVerify.pm view on Meta::CPAN
# Pull the result out of cache, or we test
# the security policy
my $result =
$run_cache{flow_cache_key} || $self->_test_sec_policy(@flow_info);
next unless $result;
# Add the result to the cache if needed.
$run_cache{$flow_cache_key} //= $result;
say $result->rulename . ','
. $result->action . ','
. $result->index . ',';
}
}
}
sub _test_sec_policy {
my $self = shift;
( run in 3.160 seconds using v1.01-cache-2.11-cpan-9169edd2b0e )