1Net::DNS::RR::NULL(3) User Contributed Perl DocumentationNet::DNS::RR::NULL(3)
2
3
4
6 Net::DNS::RR::NULL - DNS NULL resource record
7
9 use Net::DNS;
10 $rr = Net::DNS::RR->new('name NULL \# length hexdata ...');
11
13 Class for DNS null (NULL) resource records.
14
16 The available methods are those inherited from the base class augmented
17 by the type-specific methods defined in this package.
18
19 Use of undocumented package features or direct access to internal data
20 structures is discouraged and could result in program termination or
21 other unpredictable behaviour.
22
23 rdlength
24 $rdlength = $rr->rdlength;
25
26 Returns the length of the record data section.
27
28 rdata
29 $rdata = $rr->rdata;
30 $rr->rdata( $rdata );
31
32 Returns the record data section as binary data.
33
35 Copyright (c)1997 Michael Fuhr.
36
37 All rights reserved.
38
39 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
40
42 Permission to use, copy, modify, and distribute this software and its
43 documentation for any purpose and without fee is hereby granted,
44 provided that the original copyright notices appear in all copies and
45 that both copyright notice and this permission notice appear in
46 supporting documentation, and that the name of the author not be used
47 in advertising or publicity pertaining to distribution of the software
48 without specific prior written permission.
49
50 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
51 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
52 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
53 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
54 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
55 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
56 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
57
59 perl, Net::DNS, Net::DNS::RR, RFC1035 Section 3.3.10
60
61
62
63perl v5.34.1 2022-06-08 Net::DNS::RR::NULL(3)