Searched refs:trailers (Results 1 - 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/apr/network_io/unix/
H A Dsendrecv.c393 arv = apr_socket_sendv(sock, hdtr->trailers, hdtr->numtrailers,
511 arv = apr_socket_sendv(sock, hdtr->trailers, hdtr->numtrailers,
568 headerstruct.trailers = hdtr->trailers;
625 hdtr->trailers,
737 hdtrarray[1] = hdtr->trailers[0];
742 trailerlen += hdtr->trailers[i].iov_len;
750 memcpy(trailerbuf, hdtr->trailers[i].iov_base,
751 hdtr->trailers[i].iov_len);
752 trailerbuf += hdtr->trailers[
[all...]
/freebsd-12-stable/lib/libc/tests/sys/
H A Dsendfile_test.c640 struct iovec headers[1], trailers[1]; local
671 trailers[0].iov_base = "This is a trailer";
672 trailers[0].iov_len = strlen(trailers[0].iov_base);
689 hdtr.trailers = trailers;
690 hdtr.trl_cnt = nitems(trailers);
692 hdtr.trailers = NULL;
703 testcases[i].include_trailers ? (char *)trailers[0].iov_base : "");
782 hdtr3.trailers
[all...]
/freebsd-12-stable/contrib/apr/include/
H A Dapr_network_io.h221 * A structure to encapsulate headers and trailers for apr_socket_sendfile
292 /** A structure to encapsulate headers and trailers for apr_socket_sendfile */
298 /** An iovec to store the trailers sent after the file. */
299 struct iovec* trailers; member in struct:apr_hdtr_t
300 /** number of trailers in the iovec */
623 * optional headers and trailers
626 * @param hdtr A structure containing the headers and trailers to send
630 * including headers, file, and trailers
/freebsd-12-stable/tools/tools/netrate/httpd/
H A Dhttpd.c151 sf_hdtr.trailers = NULL;
/freebsd-12-stable/sys/sys/
H A Dsocket.h628 struct iovec *trailers; /* pointer to an array of trailer struct iovec's */ member in struct:sf_hdtr
/freebsd-12-stable/tools/regression/sockets/sendfile/
H A Dsendfile.c308 hdtr.trailers = NULL;
/freebsd-12-stable/sys/kern/
H A Dkern_sendfile.c896 * Send trailers. Wimp out and use writev(2).
988 if (hdtr.trailers != NULL) {
989 error = copyinuio(hdtr.trailers, hdtr.trl_cnt,
/freebsd-12-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.c1847 uint32_t trailers; member in struct:sf_hdtr32
1876 PTRIN_CP(hdtr32, hdtr, trailers);
1899 if (hdtr.trailers != NULL) {
1900 iov32 = PTRIN(hdtr32.trailers);

Completed in 87 milliseconds