Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Mystery (to me) Data Structure

by poolpi (Hermit)
on Mar 31, 2008 at 10:42 UTC ( [id://677497]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $hashIPs = {}; 
    $hashIPs->{$ip} = { totalVulns => $ipTotalVulns, vulns => $vulns };   
    + 
    $hashIPs->{$ip}->{'region'} = $region;
    
  2. or download this
    Or without references : 
    my %hashIPs;
    $hashIPs{$ip} = { totalVulns => $ipTotalVulns, vulns => $vulns };    
    $hashIPs{$ip}{'region'} = $region;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://677497]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (8)
As of 2024-04-23 19:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found