Function riot_sys::os_mbuf_concat

source ·
pub unsafe extern "C" fn os_mbuf_concat(
    first: *mut os_mbuf,
    second: *mut os_mbuf
)
Expand description

Attaches a second mbuf chain onto the end of the first. If the first chain contains a packet header, the header’s length is updated. If the second chain has a packet header, its header is cleared.

@param first The mbuf chain being attached to. @param second The mbuf chain that gets attached.