net_buf_skip() function
Skip N number of bytes in a net_buf Skip N number of bytes starting from fragment's offset. If the total length of data is placed in multiple fragments, this function will skip from all fragments until it reaches N number of bytes. Any fully skipped buffers are removed from the net_buf list.
Arguments
len
Total length of data to be skipped.
Return value
Pointer to the fragment or NULL and pos is 0 after successful skip, NULL and pos is 0xffff otherwise.