net_buf_append_bytes() function
Append data to a list of net_buf Append data to a net_buf. If there is not enough space in the net_buf then more net_buf will be added, unless there are no free net_buf and timeout occurs.
Arguments
len
Total length of input data
timeout
Timeout is passed to the net_buf allocator callback.
allocate_cb
When a new net_buf is required, use this callback.
user_data
A user data pointer to be supplied to the allocate_cb. This pointer is can be anything from a mem_pool or a net_pkt, the logic is left up to the allocate_cb function.
Return value
Length of data actually added. This may be less than input length if other timeout than K_FOREVER was used, and there were no free fragments in a pool to accommodate all data.