File Coverage

blib/lib/IO/SendFile.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 IO::SendFile;
2              
3 1     1   638 use strict;
  1         2  
  1         33  
4 1     1   4 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  1         1  
  1         140  
5              
6             require Exporter;
7             require DynaLoader;
8             require AutoLoader;
9              
10             @ISA = qw(Exporter DynaLoader);
11             # Items to export into callers namespace by default. Note: do not export
12             # names by default without a very good reason. Use EXPORT_OK instead.
13             # Do not simply export all your public functions/methods/constants.
14             @EXPORT = qw(
15            
16             );
17             @EXPORT_OK = qw( sendfile );
18             $VERSION = '0.01';
19              
20             bootstrap IO::SendFile $VERSION;
21              
22             # Preloaded methods go here.
23              
24             # Autoload methods go after =cut, and are processed by the autosplit program.
25              
26             1;
27             __END__