File Coverage

blib/lib/Net/Rendezvous/Entry.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::Rendezvous::Entry;
2              
3             =head1 NAME
4              
5             Net::Rendezvous::Entry - Support module for mDNS service discovery (Apple's Rendezvous)
6              
7             =head1 SYNOPSIS
8              
9             B and L>
10              
11             =head1 SEE ALSO
12              
13             L
14              
15             =head1 COPYRIGHT
16              
17             This library is free software and can be distributed or modified under the same terms as Perl itself.
18              
19             Rendezvous (in this context) is a trademark of Apple Computer, Inc.
20             Bonjour (in this context) is a trademark of Apple Computer, Inc.
21              
22             =head1 AUTHORS
23              
24             The Net::Rendezvous::Entry module was created by George Chlipala
25              
26             =cut
27              
28 1     1   6 use strict;
  1         2  
  1         29  
29 1     1   5 use Net::Bonjour::Entry;
  1         2  
  1         19  
30 1     1   4 use vars qw($AUTOLOAD @ISA);
  1         1  
  1         66  
31             our @ISA = ('Net::Bonjour::Entry');
32              
33             1;