File Coverage

blib/lib/Socket/Mmsg.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Socket::Mmsg;
2              
3 1     1   25209 use strict;
  1         2  
  1         38  
4 1     1   5 use warnings;
  1         2  
  1         145  
5              
6             require Exporter;
7              
8             our @ISA = qw(Exporter);
9              
10             our %EXPORT_TAGS = ( 'all' => [ qw(
11              
12             )] );
13              
14             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
15              
16             our @EXPORT = (
17             'sendmmsg',
18             'recvmmsg'
19             );
20              
21             our $VERSION = '0.02';
22              
23             require XSLoader;
24             XSLoader::load('Socket::Mmsg', $VERSION);
25              
26             # Preloaded methods go here.
27              
28             1;
29             __END__