Searched defs:chunk_hdr (Results 1 - 2 of 2) sorted by relevance

/httpd/modules/http/
H A Dchunk_filter.c60 /* XXX: chunk_hdr must remain at this scope since it is used in a
63 char chunk_hdr[20]; /* enough space for the snprintf below */ local
136 hdr_len = apr_snprintf(chunk_hdr, sizeof(chunk_hdr),
138 ap_xlate_proto_to_ascii(chunk_hdr, hdr_len);
139 e = apr_bucket_transient_create(chunk_hdr, hdr_len,
/httpd/modules/proxy/
H A Dmod_proxy_http.c254 char chunk_hdr[20]; /* must be here due to transient bucket. */ local
272 hdr_len = apr_snprintf(chunk_hdr, sizeof(chunk_hdr),
276 ap_xlate_proto_to_ascii(chunk_hdr, hdr_len);
277 e = apr_bucket_transient_create(chunk_hdr, hdr_len,

Completed in 12 milliseconds