* As above, except the mbuf chain begins a new record. */
| 1131 | * As above, except the mbuf chain begins a new record. |
| 1132 | */ |
| 1133 | void |
| 1134 | sbappendrecord(struct sockbuf *sb, struct mbuf *m0) |
| 1135 | { |
| 1136 | |
| 1137 | SOCKBUF_LOCK(sb); |
| 1138 | sbappendrecord_locked(sb, m0); |
| 1139 | SOCKBUF_UNLOCK(sb); |
| 1140 | } |
| 1141 | |
| 1142 | /* Helper routine that appends data, control, and address to a sockbuf. */ |
| 1143 | static int |
no test coverage detected