Help for this page

Select Code to Download


  1. or download this
    my %varbindhash0; 
    my %varbindhash1; 
    ...
       $varbindhash$i{OIDs_data_types} = $DATA_TYPEs[$i]; 
       $i++; 
    }
    
  2. or download this
    my %varbindhash; 
    my $i = 0; 
    ...
       $varbindhash[$i]{OIDs_data_types} = $DATA_TYPEs[$i]; 
       $i++; 
    }