| 95 | } |
| 96 | |
| 97 | static int |
| 98 | ngctl_close(int sockfd) |
| 99 | { |
| 100 | int error = kern_close(curthread, sockfd); |
| 101 | if (error) { |
| 102 | ff_os_errno(error); |
| 103 | return (-1); |
| 104 | } |
| 105 | return (error); |
| 106 | } |
| 107 | |
| 108 | int |
| 109 | ff_ngctl(int cmd, void *data) |
no test coverage detected