PBUF_FLAG_IS_CUSTOM is only used within LwIP.
 
Symbols
loading...
Files
loading...

PBUF_FLAG_IS_CUSTOM macro

indicates this is a custom pbuf: pbuf_free calls pbuf_custom->custom_free_function()

Syntax

#define PBUF_FLAG_IS_CUSTOM 0x02U

References

LocationText
pbuf.h:175
#define PBUF_FLAG_IS_CUSTOM 0x02U
pbuf.c:380
pbuf_init_alloced_pbuf(&p->pbuf, payload, length, length, type, PBUF_FLAG_IS_CUSTOM);
pbuf.c:440
&& ((q->flags & PBUF_FLAG_IS_CUSTOM) == 0)
pbuf.c:765
if ((p->flags & PBUF_FLAG_IS_CUSTOM) != 0) {