| 49 | } |
| 50 | |
| 51 | static int |
| 52 | ngctl_connect(struct connect_args *uap) |
| 53 | { |
| 54 | int error = sys_connect(curthread, uap); |
| 55 | if (error) { |
| 56 | ff_os_errno(error); |
| 57 | return (-1); |
| 58 | } |
| 59 | |
| 60 | return (error); |
| 61 | } |
| 62 | |
| 63 | static int |
| 64 | ngctl_bind(struct bind_args *uap) |
no test coverage detected