1Net::DNS::RR::L32(3)  User Contributed Perl Documentation Net::DNS::RR::L32(3)
2
3
4

NAME

6       Net::DNS::RR::L32 - DNS L32 resource record
7

SYNOPSIS

9           use Net::DNS;
10           $rr = new Net::DNS::RR('name IN L32 preference locator32');
11
12           $rr = new Net::DNS::RR(
13               name       => 'example.com',
14               type       => 'L32',
15               preference => 10,
16               locator32  => '10.1.02.0'
17               );
18

DESCRIPTION

20       Class for DNS 32-bit Locator (L32) resource records.
21
22       The L32 resource record is used to hold 32-bit Locator values for
23       ILNPv4-capable nodes.
24

METHODS

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 L32 record among other L32 records
38       associated with this owner name.  Lower values are preferred over
39       higher values.
40
41   locator32
42           $locator32 = $rr->locator32;
43
44       The Locator32 field is an unsigned 32-bit integer in network byte order
45       that has the same syntax and semantics as a 32-bit IPv4 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

SEE ALSO

58       perl, Net::DNS, Net::DNS::RR, RFC6742
59
60
61
62perl v5.16.3                      2012-12-28              Net::DNS::RR::L32(3)
Impressum