File nut/include/pro/snmp_config.h


Included Files


Preprocessor definitions

#define PRO_SNMP_CONFIG_H

#define SNMP_VIEW_INCLUDED 1

#define SNMP_VIEW_EXCLUDED 2


Typedef VIEW_LIST

typedef struct _viewEntry VIEW_LIST
struct _viewEntry  
   {  
      struct _viewEntry* next;  
      int view_index;  
      int view_type;  
      size_t view_subtree_len;  
      OID view_subtree[32];  
      char view_name[16];  
   }  

Typedef COMMUNITY_LIST

typedef struct _communityEntry COMMUNITY_LIST
struct _communityEntry  
   {  
      struct _communityEntry* next;  
      int comm_read_view;  
      int comm_write_view;  
      char comm_name[16];  
   }