C
struct processResponsePdu { BYTE messageProcessingModel; BYTE securityModel; BYTE* securityName; BYTE securityLevel; BYTE* contextEngineID; BYTE* contextName; BYTE pduVersion; BYTE* PDU; statusInformation statInfo; };
Description
Process Incoming Response PDU
The PDU Dispatcher provides the following primitive to pass an incoming SNMP Response PDU to an application:
Members
Members |
Description |
BYTE messageProcessingModel; |
typically, SNMP version |
BYTE securityModel; |
Security Model in use |
BYTE* securityName; |
on behalf of this principal |
BYTE securityLevel; |
Level of Security |
BYTE* contextEngineID; |
data from/at this SNMP entity |
BYTE* contextName; |
data from/in this context |
BYTE pduVersion; |
the version of the PDU |
BYTE* PDU; |
SNMP Protocol Data Unit |
statusInformation statInfo; |
success or errorIndication IN sendPduHandle; //handle from sendPdu |