#define SNMP_VIEW_INCLUDED 1
#define SNMP_VIEW_EXCLUDED 2
struct _viewEntry | |
{ | |
struct _viewEntry* next; | |
int view_index; | |
int view_type; | |
size_t view_subtree_len; | |
OID view_subtree[32]; | |
char view_name[16]; | |
} |
struct _communityEntry | |
{ | |
struct _communityEntry* next; | |
int comm_read_view; | |
int comm_write_view; | |
char comm_name[16]; | |
} |