| 718 | } |
| 719 | |
| 720 | static int |
| 721 | uipc_connectat(int fd, struct socket *so, struct sockaddr *nam, |
| 722 | struct thread *td) |
| 723 | { |
| 724 | int error; |
| 725 | |
| 726 | KASSERT(td == curthread, ("uipc_connectat: td != curthread")); |
| 727 | error = unp_connectat(fd, so, nam, td); |
| 728 | return (error); |
| 729 | } |
| 730 | |
| 731 | static void |
| 732 | uipc_close(struct socket *so) |
nothing calls this directly
no test coverage detected