Help for this page

Select Code to Download


  1. or download this
    while ($i < @OIDs) {
        my $varname = "varbindhash$i";
        $$varname{'OID'} = $OIDs[$i];
        ...
    }
    
  2. or download this
    my @varbindhashes = ();
    ...
    ...
        $varbindhashes[$i]->{'OID'} = $OIDs[$i];
        ...
    }