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