Lines Matching refs:trailer
51 followed by an OPTIONAL trailer containing entity-header fields. This
58 trailer
70 trailer = *(entity-header CRLF)
74 zero, followed by the trailer, which is terminated by an empty line.
85 Curl_dyn_init(&ch->trailer, DYN_H1_TRAILER);
96 Curl_dyn_reset(&ch->trailer);
103 Curl_dyn_free(&ch->trailer);
243 char *tr = Curl_dyn_ptr(&ch->trailer);
244 /* this is the end of a trailer, but if the trailer was zero bytes
245 there was no trailer and we move on */
249 result = Curl_dyn_addn(&ch->trailer, (char *)STRCONST("\x0d\x0a"));
255 tr = Curl_dyn_ptr(&ch->trailer);
256 trlen = Curl_dyn_len(&ch->trailer);
274 Curl_dyn_reset(&ch->trailer);
281 /* no trailer, we're on the final CRLF pair */
287 result = Curl_dyn_addn(&ch->trailer, buf, 1);
315 /* not a CR then it must be another header in the trailer */