blib/lib/Net/IP/Match/XS.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 9 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 3 | 100.0 |
pod | n/a | ||
total | 12 | 12 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Net::IP::Match::XS; | ||||||
2 | |||||||
3 | 1 | 1 | 38487 | use 5.006001; | |||
1 | 4 | ||||||
1 | 40 | ||||||
4 | 1 | 1 | 5 | use strict; | |||
1 | 3 | ||||||
1 | 35 | ||||||
5 | 1 | 1 | 5 | use warnings; | |||
1 | 12 | ||||||
1 | 106 | ||||||
6 | |||||||
7 | require Exporter; | ||||||
8 | |||||||
9 | our @ISA = qw(Exporter); | ||||||
10 | |||||||
11 | our @EXPORT = qw( | ||||||
12 | match_ip | ||||||
13 | ); | ||||||
14 | |||||||
15 | our $VERSION = '0.03'; | ||||||
16 | |||||||
17 | require XSLoader; | ||||||
18 | XSLoader::load('Net::IP::Match::XS', $VERSION); | ||||||
19 | |||||||
20 | 1; | ||||||
21 | |||||||
22 | __END__ |