A linked buffer structure for use with TCP.
A single otLinkedBuffer structure references an array of bytes in memory, via mData and mLength. The mNext field is used to form a chain of otLinkedBuffer structures.
Public Attributes#
struct otLinkedBuffer *
Pointer to the next linked buffer in the chain, or NULL if it is the end.
const uint8_t *
Pointer to data referenced by this linked buffer.
size_t
Length of this linked buffer (number of bytes).