| 61 | } |
| 62 | |
| 63 | static int |
| 64 | ngctl_bind(struct bind_args *uap) |
| 65 | { |
| 66 | int error = sys_bind(curthread, uap); |
| 67 | if (error) { |
| 68 | ff_os_errno(error); |
| 69 | return (-1); |
| 70 | } |
| 71 | |
| 72 | return (error); |
| 73 | } |
| 74 | |
| 75 | static int |
| 76 | ngctl_recvfrom(struct recvfrom_args *uap) |
no test coverage detected