| 701 | } |
| 702 | |
| 703 | static int |
| 704 | uipc_bind(struct socket *so, struct sockaddr *nam, struct thread *td) |
| 705 | { |
| 706 | |
| 707 | return (uipc_bindat(AT_FDCWD, so, nam, td)); |
| 708 | } |
| 709 | |
| 710 | static int |
| 711 | uipc_connect(struct socket *so, struct sockaddr *nam, struct thread *td) |
nothing calls this directly
no test coverage detected