1Net::DNS::RR::RP(3) User Contributed Perl Documentation Net::DNS::RR::RP(3)
2
3
4
6 Net::DNS::RR::RP - DNS RP resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name RP mbox txtdname');
11
13 Class for DNS Responsible Person (RP) 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 mbox
24 $mbox = $rr->mbox;
25 $rr->mbox( $mbox );
26
27 A domain name which specifies the mailbox for the person responsible
28 for this domain. The format in master files uses the DNS encoding
29 convention for mailboxes, identical to that used for the RNAME mailbox
30 field in the SOA RR. The root domain name (just ".") may be specified
31 to indicate that no mailbox is available.
32
33 txtdname
34 $txtdname = $rr->txtdname;
35 $rr->txtdname( $txtdname );
36
37 A domain name identifying TXT RRs. A subsequent query can be performed
38 to retrieve the associated TXT records. This provides a level of
39 indirection so that the entity can be referred to from multiple places
40 in the DNS. The root domain name (just ".") may be specified to
41 indicate that there is no associated TXT RR.
42
44 Copyright (c)1997 Michael Fuhr.
45
46 All rights reserved.
47
48 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
49
51 Permission to use, copy, modify, and distribute this software and its
52 documentation for any purpose and without fee is hereby granted,
53 provided that the above copyright notice appear in all copies and that
54 both that copyright notice and this permission notice appear in
55 supporting documentation, and that the name of the author not be used
56 in advertising or publicity pertaining to distribution of the software
57 without specific prior written permission.
58
59 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
60 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
61 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
62 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
63 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
64 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
65 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
66
68 perl, Net::DNS, Net::DNS::RR, RFC1183 Section 2.2
69
70
71
72perl v5.32.0 2020-07-28 Net::DNS::RR::RP(3)