- or download this
use Net::SNMP::PDU qw( :ALL !DEBUG_INFO );
- or download this
use base qw( Net::SNMP::Message );
...
{
return Net::SNMP::Message->export_to_level(1, @_);
}
- or download this
our %EXPORT_TAGS = (
...
...
sub INTEGER32 { 0x02 } # Integer32 - SNMPv2c
sub OCTET_STRING { 0x04 } # OCTET STRING
...
- or download this
use base qw( Exporter );
our @EXPORT = qw(
INTEGER INTEGER32 OCTET_STRING ...
);
- or download this
our %EXPORT_TAGS = (
asn1 => [
...
Exporter::export_ok_tags( qw( asn1 debug generictrap snmp translate )
+);
$EXPORT_TAGS{ALL} = [ @EXPORT_OK ];