1Net::DNS::RR::PX(3) User Contributed Perl Documentation Net::DNS::RR::PX(3)
2
3
4
6 Net::DNS::RR::PX - DNS PX resource record
7
9 use Net::DNS;
10 $rr = Net::DNS::RR->new('name PX preference map822 mapx400');
11
13 Class for DNS X.400 Mail Mapping Information (PX) 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 preference
24 $preference = $rr->preference;
25 $rr->preference( $preference );
26
27 A 16 bit integer which specifies the preference given to this RR among
28 others at the same owner. Lower values are preferred.
29
30 map822
31 $map822 = $rr->map822;
32 $rr->map822( $map822 );
33
34 A domain name element containing <rfc822-domain>, the RFC822 part of
35 the MIXER Conformant Global Address Mapping.
36
37 mapx400
38 $mapx400 = $rr->mapx400;
39 $rr->mapx400( $mapx400 );
40
41 A <domain-name> element containing the value of <x400-in-domain-syntax>
42 derived from the X.400 part of the MIXER Conformant Global Address
43 Mapping.
44
46 Copyright (c)1997 Michael Fuhr.
47
48 All rights reserved.
49
50 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
51
53 Permission to use, copy, modify, and distribute this software and its
54 documentation for any purpose and without fee is hereby granted,
55 provided that the above copyright notice appear in all copies and that
56 both that copyright notice and this permission notice appear in
57 supporting documentation, and that the name of the author not be used
58 in advertising or publicity pertaining to distribution of the software
59 without specific prior written permission.
60
61 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
62 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
63 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
64 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
65 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
66 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
67 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
68
70 perl, Net::DNS, Net::DNS::RR, RFC2163
71
72
73
74perl v5.34.0 2021-07-22 Net::DNS::RR::PX(3)