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