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