| ADC Home > Reference Library > Reference > Darwin > Miscellaneous User Space API Reference 
 | 
| data_list.h | 
| Includes: | <net-snmp/library/snmp_impl.h> <net-snmp/library/tools.h> | 
| netsnmp_add_list_data | 
void netsnmp_add_list_data( netsnmp_data_list **head, netsnmp_data_list *node);
depreciated: use netsnmp_data_list_add_node()
| netsnmp_data_list | 
- netsnmp_data_list_s
typedef struct netsnmp_data_list_s { struct netsnmp_data_list_s *next; char *name; /** The pointer to the data passed on. */ void *data; /** must know how to free netsnmp_data_list->data */ Netsnmp_Free_List_Data *free_func; } netsnmp_data_list;
used to iterate through lists of data
| netsnmp_data_list_s | 
- netsnmp_data_list
typedef struct netsnmp_data_list_s { struct netsnmp_data_list_s *next; char *name; /** The pointer to the data passed on. */ void *data; /** must know how to free netsnmp_data_list->data */ Netsnmp_Free_List_Data *free_func; } netsnmp_data_list;
used to iterate through lists of data
| 
 |