| 123 | #endif |
| 124 | |
| 125 | int |
| 126 | sys_socket(struct thread *td, struct socket_args *uap) |
| 127 | { |
| 128 | |
| 129 | return (kern_socket(td, uap->domain, uap->type, uap->protocol)); |
| 130 | } |
| 131 | |
| 132 | int |
| 133 | kern_socket(struct thread *td, int domain, int type, int protocol) |
no test coverage detected