[][src]Function mynewt::kernel::os::os_mbuf_concat

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

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.

  • first: The mbuf chain being attached to.
  • second: The mbuf chain that gets attached.