line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Rendezvous; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Net::Rendezvous - Module for DNS service discovery (Apple's Rendezvous) |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 SYNOPSIS |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
B>. |
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 module was created by George Chlipala |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=cut |
27
|
|
|
|
|
|
|
|
28
|
1
|
|
|
1
|
|
35491
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
34
|
|
29
|
1
|
|
|
1
|
|
445
|
use Net::Bonjour; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
26
|
|
30
|
1
|
|
|
1
|
|
507
|
use Net::Rendezvous::Entry; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
33
|
|
31
|
1
|
|
|
1
|
|
6
|
use vars qw($VERSION $AUTOLOAD @ISA); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
85
|
|
32
|
|
|
|
|
|
|
our $VERSION = '0.92'; |
33
|
|
|
|
|
|
|
our @ISA = ('Net::Bonjour'); |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
1; |