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
26 A domain name which specifies the mailbox for the person responsible
27 for this domain. Its format in master files uses the DNS convention
28 for mailbox encoding, identical to that used for the RNAME mailbox
29 field in the SOA RR. The root domain name (just ".") may be specified
30 to indicate that no mailbox is available.
31
32 txtdname
33 $txtdname = $rr->txtdname;
34
35 A domain name identifying TXT RRs. A subsequent query can be performed
36 to retrieve the associated TXT records. This provides a level of
37 indirection so that the entity can be referred to from multiple places
38 in the DNS. The root domain name (just ".") may be specified to
39 indicate that no associated TXT RR exists.
40
42 Copyright (c)1997-2002 Michael Fuhr.
43
44 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
45
46 All rights reserved.
47
48 This program is free software; you may redistribute it and/or modify it
49 under the same terms as Perl itself.
50
52 perl, Net::DNS, Net::DNS::RR, RFC1183 Section 2.2
53
54
55
56perl v5.16.3 2012-12-28 Net::DNS::RR::RP(3)