As sock_readhdr but without auxiliary fd passing. */
| 422 | |
| 423 | /* As sock_readhdr but without auxiliary fd passing. */ |
| 424 | static apr_status_t sock_read(int fd, void *vbuf, size_t buf_size) |
| 425 | { |
| 426 | return sock_readhdr(fd, NULL, vbuf, buf_size); |
| 427 | } |
| 428 | |
| 429 | /* deal with signals |
| 430 | */ |
no test coverage detected