| 1231 | } |
| 1232 | |
| 1233 | int |
| 1234 | sys_setsockopt(struct thread *td, struct setsockopt_args *uap) |
| 1235 | { |
| 1236 | |
| 1237 | return (kern_setsockopt(td, uap->s, uap->level, uap->name, |
| 1238 | uap->val, UIO_USERSPACE, uap->valsize)); |
| 1239 | } |
| 1240 | |
| 1241 | int |
| 1242 | kern_setsockopt(struct thread *td, int s, int level, int name, const void *val, |
nothing calls this directly
no test coverage detected