Symbols
loading...
Files
loading...

pbuf_custom struct

A custom pbuf: like a pbuf, but following a function pointer to free it.

Syntax

struct pbuf_custom {   struct pbuf pbuf;   pbuf_free_custom_fn custom_free_function; };

Fields

pbuf

The actual pbuf. Read more...

custom_free_function

This function is called when pbuf_free deallocates this pbuf(_custom). Read more...

Examples

pbuf_custom is referenced by 28 libraries and example projects.

References

LocationReferrerScopeText
pbuf.h:242
struct pbuf_custom {
ip4_frag.h:84pbuf_custom_ref::pcpbuf_custom_ref
struct pbuf_custom pc;
pbuf.c:363pbuf_alloced_custom()
pbuf.c:766pbuf_free()
struct pbuf_custom *pc = (struct pbuf_custom *)p;
pbuf.h:276pbuf_alloced_custom()::ppbuf_alloced_custom()
struct pbuf_custom *p, void *payload_mem,

Type Use

Variables of pbuf_custom type
pbuf_free()::pc
all items filtered out
pbuf_custom