Changeset 863
- Timestamp:
- 03/30/05 01:59:25 (5 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
people/ilmari/modularisation-branch/node/SNMP.pm.in
r498 r863 93 93 } 94 94 95 =head2 get_single 96 97 $result = $session->get_single($oid); 98 99 This method fetches the value of $oid. 100 101 =cut 102 103 sub get_single { 104 my ($self, $oid) = @_; 105 print "# Getting single $oid...\n" if $DEBUG; 106 107 my $response = $self->get_request($oid); 108 109 return $response->{$oid}; 110 } 111 95 112 =head2 get_hash() - retrieve a table as a hash of hashes 96 113
