| 398 | } |
| 399 | |
| 400 | static void |
| 401 | ngd_detach(struct socket *so) |
| 402 | { |
| 403 | struct ngpcb *const pcbp = sotongpcb(so); |
| 404 | |
| 405 | KASSERT(pcbp != NULL, ("ngd_detach: pcbp == NULL")); |
| 406 | ng_detach_common(pcbp, NG_DATA); |
| 407 | } |
| 408 | |
| 409 | static int |
| 410 | ngd_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, |
nothing calls this directly
no test coverage detected