#include <pbuf.h>
Data Fields | |
u8_t | flags |
misc flags More... | |
u16_t | len |
length of this buffer More... | |
struct pbuf * | next |
next pbuf in singly linked pbuf chain More... | |
void * | payload |
pointer to the actual data in the buffer More... | |
u16_t | ref |
the reference count always equals the number of pointers that refer to this pbuf. More... | |
u16_t | tot_len |
total length of this buffer and all next buffers in chain belonging to the same packet. More... | |
u8_t | type |
pbuf_type as u8_t instead of enum to save space More... | |
u8_t pbuf::flags |
u16_t pbuf::len |
length of this buffer
Referenced by http_recv(), low_level_input(), low_level_output(), pbuf_alloc(), pbuf_cat(), pbuf_clen(), pbuf_copy(), pbuf_copy_partial(), pbuf_dechain(), pbuf_get_at(), pbuf_header(), pbuf_memcmp(), pbuf_realloc(), pbuf_take(), ping_send(), and process_pqueue().
struct pbuf * pbuf::next |
next pbuf in singly linked pbuf chain
Referenced by low_level_input(), low_level_output(), pbuf_alloc(), pbuf_cat(), pbuf_clen(), pbuf_coalesce(), pbuf_copy(), pbuf_copy_partial(), pbuf_dechain(), pbuf_free(), pbuf_get_at(), pbuf_memcmp(), pbuf_realloc(), pbuf_take(), ping_send(), and process_pqueue().
void * pbuf::payload |
pointer to the actual data in the buffer
Referenced by http_recv(), low_level_input(), low_level_output(), pbuf_alloc(), pbuf_copy(), pbuf_copy_partial(), pbuf_get_at(), pbuf_header(), pbuf_realloc(), pbuf_take(), ping_recv(), ping_send(), process_pqueue(), and wlif_input().
u16_t pbuf::ref |
the reference count always equals the number of pointers that refer to this pbuf.
This can be pointers from an application, the stack itself, or pbuf->next pointers from a chain.
Referenced by pbuf_alloc(), pbuf_free(), and pbuf_ref().
u16_t pbuf::tot_len |
total length of this buffer and all next buffers in chain belonging to the same packet.
For non-queue packet chains this is the invariant: p->tot_len == p->len + (p->next? p->next->tot_len: 0)
Referenced by http_recv(), pbuf_alloc(), pbuf_cat(), pbuf_coalesce(), pbuf_copy(), pbuf_dechain(), pbuf_header(), pbuf_memfind(), pbuf_realloc(), pbuf_strstr(), pbuf_take(), ping_recv(), ping_send(), process_pqueue(), tcp_recv_cb(), and udp_recv_cb().
u8_t pbuf::type |
pbuf_type as u8_t instead of enum to save space
Referenced by pbuf_alloc(), pbuf_free(), pbuf_header(), and pbuf_realloc().