File nut/include/pro/snmp_pdu.h


Included Files


Preprocessor definitions

#define PRO_SNMP_PDU_H

Typedef SNMP_VARLIST

typedef struct _SNMP_VARLIST SNMP_VARLIST
See: Type struct _SNMP_VARLIST

Type struct _SNMP_VARLIST

struct _SNMP_VARLIST
struct _SNMP_VARLIST  
   {  
      SNMP_VARLIST* var_next;  
      OID* var_name;  
      int var_nlen;  
      uint8_t var_type;  
      long var_val;  
      uint8_t* var_vptr;  
      int var_vlen;  
   }  

Typedef SNMP_PDU

typedef struct {...} SNMP_PDU
struct  
   {  
      int pdu_cmd;  
      uint32_t pdu_reqid;  
      uint32_t pdu_errstat;  
      uint32_t pdu_errindex;  
      OID* pdu_enterprise;  
      int pdu_enterprise_length;  
      uint32_t pdu_agent_addr;  
      int pdu_trap_type;  
      int pdu_specific_type;  
      uint32_t pdu_time;  
      SNMP_VARLIST* pdu_variables;  
   }