| 207 | } |
| 208 | |
| 209 | static void |
| 210 | ngc_detach(struct socket *so) |
| 211 | { |
| 212 | struct ngpcb *const pcbp = sotongpcb(so); |
| 213 | |
| 214 | KASSERT(pcbp != NULL, ("ngc_detach: pcbp == NULL")); |
| 215 | ng_detach_common(pcbp, NG_CONTROL); |
| 216 | } |
| 217 | |
| 218 | static int |
| 219 | ngc_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, |
nothing calls this directly
no test coverage detected