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>

Introduction



Functions

netsnmp_add_list_data

netsnmp_add_list_data


void netsnmp_add_list_data(
    netsnmp_data_list **head, 
    netsnmp_data_list *node);  
Discussion

depreciated: use netsnmp_data_list_add_node()

Typedefs


netsnmp_data_list


See Also:
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;  
Discussion

used to iterate through lists of data


netsnmp_data_list_s


See Also:
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;  
Discussion

used to iterate through lists of data

Last Updated: 2006-06-20