home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / NIMLOC.pm < prev    next >
Encoding:
Perl POD Document  |  2003-12-13  |  1.2 KB  |  63 lines

  1. package Net::DNS::RR::NIMLOC;
  2. #
  3. # $Id: NIMLOC.pm,v 2.100 2003/12/13 01:37:05 ctriv Exp $
  4. #
  5. use strict;
  6. use vars qw(@ISA $VERSION);
  7.  
  8. use Net::DNS::Packet;
  9.  
  10. @ISA     = qw(Net::DNS::RR);
  11. $VERSION = (qw$Revision: 2.100 $)[1];
  12.  
  13. sub new {
  14.     my ($class, $self, $data, $offset) = @_;
  15.     return bless $self, $class;
  16. }
  17.  
  18. 1;
  19. __END__
  20.  
  21. =head1 NAME
  22.  
  23. Net::DNS::RR::NIMLOC - DNS NIMLOC resource record
  24.  
  25. =head1 SYNOPSIS
  26.  
  27. C<use Net::DNS::RR>;
  28.  
  29. =head1 DESCRIPTION
  30.  
  31. Class for DNS Nimrod Locator (NIMLOC) resource records.
  32.  
  33. =head1 METHODS
  34.  
  35. =head2 rdlength
  36.  
  37.     print "rdlength = ", $rr->rdlength, "\n";
  38.  
  39. Returns the length of the record's data section.
  40.  
  41. =head2 rdata
  42.  
  43.     $rdata = $rr->rdata;
  44.  
  45. Returns the record's data section as binary data.
  46.  
  47. =head1 COPYRIGHT
  48.  
  49. Copyright (c) 1997-2002 Michael Fuhr. 
  50.  
  51. Portions Copyright (c) 2002-2003 Chris Reinhardt.
  52.  
  53. All rights reserved.  This program is free software; you may redistribute
  54. it and/or modify it under the same terms as Perl itself.
  55.  
  56. =head1 SEE ALSO
  57.  
  58. L<perl(1)>, L<Net::DNS>, L<Net::DNS::Resolver>, L<Net::DNS::Packet>,
  59. L<Net::DNS::Header>, L<Net::DNS::Question>, L<Net::DNS::RR>,
  60. draft-ietf-nimrod-dns-I<xx>.txt
  61.  
  62. =cut
  63.