1Net::DNS::RR::AAAA(3) User Contributed Perl DocumentationNet::DNS::RR::AAAA(3)
2
3
4

NAME

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

SYNOPSIS

9           use Net::DNS;
10           $rr = new Net::DNS::RR('name IN AAAA address');
11
12           $rr = new Net::DNS::RR(
13               name    => 'example.com',
14               type    => 'AAAA',
15               address => '2001:DB8::8:800:200C:417A'
16               );
17

DESCRIPTION

19       Class for DNS IPv6 Address (AAAA) resource records.
20

METHODS

22       The available methods are those inherited from the base class augmented
23       by the type-specific methods defined in this package.
24
25       Use of undocumented package features or direct access to internal data
26       structures is discouraged and could result in program termination or
27       other unpredictable behaviour.
28
29   address
30           $IPv6_address = $rr->address;
31
32       Returns the text representation of the IPv6 address.
33
34   address_long
35           $IPv6_address = $rr->address_long;
36
37       Returns the text representation specified in RFC3513, 2.2\fIs0(1).
38
39   address_short
40           $IPv6_address = $rr->address_short;
41
42       Returns the textual form of address recommended by RFC5952.
43
45       Copyright (c)1997-1998 Michael Fuhr.
46
47       Portions Copyright (c)2002-2004 Chris Reinhardt.
48
49       Portions Copyright (c)2012 Dick Franks.
50
51       Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
52
53       All rights reserved.
54
55       This program is free software; you may redistribute it and/or modify it
56       under the same terms as Perl itself.
57

SEE ALSO

59       perl, Net::DNS, Net::DNS::RR, RFC3596, RFC3513, RFC5952
60
61
62
63perl v5.16.3                      2012-12-28             Net::DNS::RR::AAAA(3)
Impressum