| 314 | } |
| 315 | |
| 316 | int |
| 317 | kern_accept(struct thread *td, int s, struct sockaddr **name, |
| 318 | socklen_t *namelen, struct file **fp) |
| 319 | { |
| 320 | return (kern_accept4(td, s, name, namelen, ACCEPT4_INHERIT, fp)); |
| 321 | } |
| 322 | |
| 323 | int |
| 324 | kern_accept4(struct thread *td, int s, struct sockaddr **name, |
no test coverage detected