Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /proc/self/root/proc/self/root/usr/share/fusioninventory/lib/FusionInventory/Agent/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/self/root/proc/self/root/usr/share/fusioninventory/lib/FusionInventory/Agent/SNMP.pm
package FusionInventory::Agent::SNMP;

use strict;
use warnings;

use Encode qw(encode);
use English qw(-no_match_vars);

use FusionInventory::Agent::Tools;

our $VERSION = '1.1';

sub get_first {
    my ($self, $oid) = @_;

    my $values = $self->walk($oid);
    return unless $values;

    my $value =
        first { $_ }
        map   { $values->{$_} }
        sort  { $a <=> $b }
        keys %$values;

    return $value;
}

1;
__END__

=head1 NAME

FusionInventory::Agent::SNMP - Base class for SNMP client

=head1 DESCRIPTION

This is the object used by the agent to perform SNMP queries.

=head1 METHODS

=head2 switch_vlan_context($vlan_id)

Switch to a new vlan-specific context.

With SNMPv1 and SNMPv2, this creates a new SNMP connection, using a community
derived from original one, with vlan ID appended as a suffix. With SNMPv3,
ensure all subsequent requests use relevant context.

=head2 reset_original_context()

Reset to original context.

=head2 get($oid)

This method returns the value from the SNMP object with given OID.

=head2 get_first($oid)

This method returns the first first non-null value from the SNMP table with
given OID.

=head2 walk($oid)

This method returns all values from the SNMP table with given OID, indexed by
their index.

Hry