| 708 | } |
| 709 | |
| 710 | static int |
| 711 | uipc_connect(struct socket *so, struct sockaddr *nam, struct thread *td) |
| 712 | { |
| 713 | int error; |
| 714 | |
| 715 | KASSERT(td == curthread, ("uipc_connect: td != curthread")); |
| 716 | error = unp_connect(so, nam, td); |
| 717 | return (error); |
| 718 | } |
| 719 | |
| 720 | static int |
| 721 | uipc_connectat(int fd, struct socket *so, struct sockaddr *nam, |
nothing calls this directly
no test coverage detected