5 our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
8 @EXPORT = qw(gethostbyname gethostbyaddr gethost);
14 %EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] );
18 # Class::Struct forbids use of @ISA
19 sub import { goto &Exporter::import }
21 use Class::Struct qw(struct);
22 struct
'Net::hostent' => [
30 sub addr
{ shift->addr_list->[0] }
35 $h_name = $hob->[0] = $_[0];
36 @h_aliases = @
{ $hob->[1] } = split ' ', $_[1];
37 $h_addrtype = $hob->[2] = $_[2];
38 $h_length = $hob->[3] = $_[3];
40 @h_addr_list = @
{ $hob->[4] } = @_[ (4 .. $#_) ];
44 sub gethostbyname ($) { populate
(CORE
::gethostbyname(shift)) }
46 sub gethostbyaddr ($;$) {
47 my ($addr, $addrtype);
49 require Socket
unless @_;
50 $addrtype = @_ ?
shift : Socket
::AF_INET
();
51 populate
(CORE
::gethostbyaddr($addr, $addrtype))
55 if ($_[0] =~ /^\d+(?:\.\d+(?:\.\d+(?:\.\d+)?)?)?$/) {
57 &gethostbyaddr(Socket
::inet_aton
(shift));
68 Net::hostent - by-name interface to Perl's built-in gethost*() functions
76 This module's default exports override the core gethostbyname() and
77 gethostbyaddr() functions, replacing them with versions that return
78 "Net::hostent" objects. This object has methods that return the similarly
79 named structure field name from the C's hostent structure from F<netdb.h>;
80 namely name, aliases, addrtype, length, and addr_list. The aliases and
81 addr_list methods return array reference, the rest scalars. The addr
82 method is equivalent to the zeroth element in the addr_list array
85 You may also import all the structure fields directly into your namespace
86 as regular variables using the :FIELDS import tag. (Note that this still
87 overrides your core functions.) Access these fields as variables named
88 with a preceding C<h_>. Thus, C<$host_obj-E<gt>name()> corresponds to
89 $h_name if you import the fields. Array references are available as
90 regular array variables, so for example C<@{ $host_obj-E<gt>aliases()
91 }> would be simply @h_aliases.
93 The gethost() function is a simple front-end that forwards a numeric
94 argument to gethostbyaddr() by way of Socket::inet_aton, and the rest
97 To access this functionality without the core overrides,
98 pass the C<use> an empty import list, and then access
99 function functions with their full qualified names.
100 On the other hand, the built-ins are still available
101 via the C<CORE::> pseudo-package.
108 @ARGV = ('netscape.com') unless @ARGV;
110 for $host ( @ARGV ) {
112 unless ($h = gethost($host)) {
113 warn "$0: no such host: $host\n";
117 printf "\n%s is %s%s\n",
119 lc($h->name) eq lc($host) ? "" : "*really* ",
122 print "\taliases are ", join(", ", @{$h->aliases}), "\n"
125 if ( @{$h->addr_list} > 1 ) {
127 for $addr ( @{$h->addr_list} ) {
128 printf "\taddr #%d is [%s]\n", $i++, inet_ntoa($addr);
131 printf "\taddress is [%s]\n", inet_ntoa($h->addr);
134 if ($h = gethostbyaddr($h->addr)) {
135 if (lc($h->name) ne lc($host)) {
136 printf "\tThat addr reverses to host %s!\n", $h->name;
145 While this class is currently implemented using the Class::Struct
146 module to build a struct-like class, you shouldn't rely upon this.