1Net::DNS::RR::RT(3) User Contributed Perl Documentation Net::DNS::RR::RT(3)
2
3
4
6 Net::DNS::RR::RT - DNS RT resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name RT preference intermediate');
11
13 Class for DNS Route Through (RT) 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
26 A 16 bit integer representing the preference of the route.
27 Smaller numbers indicate more preferred routes.
28
29 intermediate
30 $intermediate = $rr->intermediate;
31
32 The domain name of a host which will serve as an intermediate in
33 reaching the host specified by the owner name. The DNS RRs associated
34 with the intermediate host are expected to include at least one A, X25,
35 or ISDN record.
36
38 Copyright (c)1997-2002 Michael Fuhr.
39
40 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
41
42 All rights reserved.
43
44 This program is free software; you may redistribute it and/or modify it
45 under the same terms as Perl itself.
46
48 perl, Net::DNS, Net::DNS::RR, RFC1183 Section 3.3
49
50
51
52perl v5.16.3 2012-12-28 Net::DNS::RR::RT(3)