1Net::DNS::RR::HINFO(3)User Contributed Perl DocumentationNet::DNS::RR::HINFO(3)
2
3
4
6 Net::DNS::RR::HINFO - DNS HINFO resource record
7
9 use Net::DNS;
10 $rr = new Net::DNS::RR('name HINFO cpu os');
11
13 Class for DNS Hardware Information (HINFO) 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 cpu
24 $cpu = $rr->cpu;
25
26 Returns the CPU type for this RR.
27
28 os
29 $os = $rr->os;
30
31 Returns the operating system type for this RR.
32
34 Copyright (c)1997-1998 Michael Fuhr.
35
36 Package template (c)2009,2012 O.M.Kolkman and R.W.Franks.
37
38 All rights reserved.
39
40 This program is free software; you may redistribute it and/or modify it
41 under the same terms as Perl itself.
42
44 perl, Net::DNS, Net::DNS::RR, RFC1035 Section 3.3.2
45
46
47
48perl v5.16.3 2012-12-28 Net::DNS::RR::HINFO(3)