1Net::DNS::RR::L64(3) User Contributed Perl Documentation Net::DNS::RR::L64(3)
2
3
4
6 Net::DNS::RR::L64 - DNS L64 resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name IN L64 preference locator64');
11
12 $rr = new Net::DNS::RR(
13 name => 'example.com',
14 type => 'L64',
15 preference => 10,
16 locator64 => '2001:0DB8:1140:1000'
17 );
18
20 Class for DNS 64-bit Locator (L64) resource records.
21
22 The L64 resource record is used to hold 64-bit Locator values for
23 ILNPv6-capable nodes.
24
26 The available methods are those inherited from the base class augmented
27 by the type-specific methods defined in this package.
28
29 Use of undocumented package features or direct access to internal data
30 structures is discouraged and could result in program termination or
31 other unpredictable behaviour.
32
33 preference
34 $preference = $rr->preference;
35
36 A 16 bit unsigned integer in network byte order that indicates the
37 relative preference for this L64 record among other L64 records
38 associated with this owner name. Lower values are preferred over
39 higher values.
40
41 locator64
42 $locator64 = $rr->locator64;
43
44 The Locator64 field is an unsigned 64-bit integer in network byte order
45 that has the same syntax and semantics as a 64-bit IPv6 routing prefix.
46
48 Copyright (c)2012 Dick Franks.
49
50 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
51
52 All rights reserved.
53
54 This program is free software; you may redistribute it and/or modify it
55 under the same terms as Perl itself.
56
58 perl, Net::DNS, Net::DNS::RR, RFC6742
59
60
61
62perl v5.16.3 2012-12-28 Net::DNS::RR::L64(3)