1RR::NXT(3) User Contributed Perl Documentation RR::NXT(3)
2
3
4
6 Net::DNS::RR::NXT - DNS NXT resource record
7
9 "use Net::DNS::RR;"
10
12 NOTE: THE NXT RR has been deprecated! Use NSEC instead.
13
14 Class for DNS Address (NXT) resource records.
15
17 nxtdname
18 print "nxtdname" = ", $rr->nxtdname, "\n";
19
20 Returns the RR's next domain name field.
21
22 typelist
23 print "typelist" = ", $rr->typelist, "\n";
24
25 Returns a string with the list of qtypes for which data exists for this
26 particular label.
27
28 typebm
29 print "typebm" = " unpack("B*", $rr->typebm), "\n";
30
31 Same as the typelist but now in a representation bitmap as in
32 specified in the RFC. This is not the kind of method you will need on
33 daily basis.
34
36 Copyright (c) 2001-2005 RIPE NCC. Author Olaf M. Kolkman
37 <olaf@net-dns.org>
38
39 All Rights Reserved
40
41 Permission to use, copy, modify, and distribute this software and its
42 documentation for any purpose and without fee is hereby granted,
43 provided that the above copyright notice appear in all copies and that
44 both that copyright notice and this permission notice appear in
45 supporting documentation, and that the name of the author not be used
46 in advertising or publicity pertaining to distribution of the software
47 without specific, written prior permission.
48
49 THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
50 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS; IN NO
51 EVENT SHALL AUTHOR BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
52 DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
53 PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
54 ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
55 THIS SOFTWARE.
56
57 Based on, and contains, code by Copyright (c) 1997 Michael Fuhr.
58
60 http://www.net-dns.org/ <http://www.net-dns.org/>
61
62 perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet,
63 Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, RFC 2435 Section 5
64
65
66
67perl v5.12.3 2010-03-12 RR::NXT(3)