| 1272 | } |
| 1273 | |
| 1274 | void |
| 1275 | sbappendcontrol(struct sockbuf *sb, struct mbuf *m0, struct mbuf *control, |
| 1276 | int flags) |
| 1277 | { |
| 1278 | |
| 1279 | SOCKBUF_LOCK(sb); |
| 1280 | sbappendcontrol_locked(sb, m0, control, flags); |
| 1281 | SOCKBUF_UNLOCK(sb); |
| 1282 | } |
| 1283 | |
| 1284 | /* |
| 1285 | * Append the data in mbuf chain (m) into the socket buffer sb following mbuf |
nothing calls this directly
no test coverage detected