Hi David,
The messageProcessingModel parameter of the CommandResponderEvent object 
provides the SNMP version directly.
Best regards
Frank

> Am 07.08.2015 um 18:17 schrieb David Ishmael <[email protected]>:
> 
> Hey all - What is the best way to determine the PDU version in a trap 
> receiver using SNMP4J?  Here’s what I have and I think this works but I’m 
> wondering if there’s a better way...
> 
> public synchronized void processPdu(CommandResponderEvent cmdRespEvent) {
>    PDU pdu = cmdRespEvent.getPDU();
>    switch(pdu.getType()) {
>        case PDU.V1TRAP:
>            …
>            break;
> 
>        case -89: // v2c?
>            …
>            break;
> 
>        default:  // v3?
>            …
>    }
> }
> 
> 
> Thanks, Dave
> _______________________________________________
> SNMP4J mailing list
> [email protected]
> https://oosnmp.net/mailman/listinfo/snmp4j
_______________________________________________
SNMP4J mailing list
[email protected]
https://oosnmp.net/mailman/listinfo/snmp4j

Reply via email to