Eliminate use of ap_iovec_t and use Posix struct iovec. I never
did hear a case (much less a strong case) supporting the need
for ap_iovec_t, so out it goes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84657
13f79535-47bb-0310-9956-
ffa450edef68
ap_size_t nbytes;
#ifndef NO_WRITEV
- ap_iovec_t *iov;
struct iovec iova[2];
ap_size_t niov;
#endif
iova[1].iov_base = "\n";
iova[1].iov_len = 1;
- ap_make_iov(&iov, iova, r->pool);
niov = 2;
- ap_writev(fpin, iov, niov, &nbytes);
+ ap_writev(fpin, iova, niov, &nbytes);
#endif
/* read in the response value */