| 1599 | } |
| 1600 | |
| 1601 | void |
| 1602 | sbdrop(struct sockbuf *sb, int len) |
| 1603 | { |
| 1604 | struct mbuf *mfree; |
| 1605 | |
| 1606 | SOCKBUF_LOCK(sb); |
| 1607 | mfree = sbcut_internal(sb, len); |
| 1608 | SOCKBUF_UNLOCK(sb); |
| 1609 | |
| 1610 | m_freem(mfree); |
| 1611 | } |
| 1612 | |
| 1613 | struct mbuf * |
| 1614 | sbsndptr_noadv(struct sockbuf *sb, uint32_t off, uint32_t *moff) |
no test coverage detected