#include <coap_list.h>
Data Fields | |
struct coap_linkedlistnode * | next |
void * | data |
void(* | delete_func )(void *) |
Callback function that is called from coap_delete to release additional memory allocated by data Set to NULL if you do not need this. More... | |
Definition at line 12 of file coap_list.h.
void* coap_linkedlistnode::data |
Definition at line 14 of file coap_list.h.
void(* coap_linkedlistnode::delete_func)(void *) |
Callback function that is called from coap_delete to release additional memory allocated by data Set to NULL if you do not need this.
Note that data is free'd automatically.
Definition at line 20 of file coap_list.h.
struct coap_linkedlistnode* coap_linkedlistnode::next |
Definition at line 13 of file coap_list.h.