Dru has asked for the wisdom of the Perl Monks concerning the following question:
I have to admit, I'm not too clear on references even after reading perlref. I would most appreciate any assistance the monastary might be able to provide.use Net::Whois::IP qw(whoisip_query); my $ip = "192.168.1.1"; #Response will be a reference to a hash containing all information #provided by the whois registrar #The array_of_responses is a reference to an array containing referenc +es #to hashes containing each level of query done. For example, #many records have to be searched several times to #get to the correct information, this array contains the responses #from each level my ($response,$array_of_responses) = whoisip_query($ip);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Help Dereferencing Net::Whois::IP
by castaway (Parson) on Jun 20, 2003 at 12:33 UTC | |
by Aristotle (Chancellor) on Jun 20, 2003 at 20:30 UTC | |
|
Re: Help Dereferencing Net::Whois::IP
by bobn (Chaplain) on Jun 20, 2003 at 12:55 UTC | |
by Dru (Hermit) on Jun 20, 2003 at 12:59 UTC | |
|
Re: Help Dereferencing Net::Whois::IP
by ScooterQ (Pilgrim) on Jun 20, 2003 at 12:38 UTC |