Searched refs:chunked (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/contrib/wpa/src/wps/
H A Dhttpread.c20 * -- transfer encoding other than chunked
32 * HTTP/1.1, especially chunked data.
82 int chunked; /* nonzero for chunked data */ member in struct:httpread
92 /* The following apply if data is chunked: */
96 int in_trailer; /* in header fields after data (chunked only)*/
210 * other than chunked...
213 h->chunked = 1;
342 /* chunked overrides content-length always */
343 if (h->chunked)
[all...]
/freebsd-10.0-release/contrib/serf/buckets/
H A Dresponse_buckets.c42 int chunked; /* Do we need to read trailers? */ member in struct:__anon4151
58 ctx->chunked = 0;
244 /* Are we C-L, chunked, or conn close? */
259 if (v && strcasecmp("chunked", v) == 0) {
260 ctx->chunked = 1;
392 if (ctx->chunked) {
/freebsd-10.0-release/usr.sbin/portsnap/phttpget/
H A Dphttpget.c317 int chunked; /* != if transfer-encoding is chunked */ local
453 chunked = 0;
481 * Transfer-Encoding: chunked header to
547 /* Check for "Transfer-Encoding: chunked" header */
550 if (strcasestr(hln, "chunked") != NULL)
551 chunked = 1;
604 if (chunked) {
605 /* Handle a chunked-encoded entity */
655 * Not chunked, an
[all...]
/freebsd-10.0-release/lib/libfetch/
H A Dhttp.c124 * I/O functions for decoding chunked streams
130 int chunked; /* chunked mode */ member in struct:httpio
217 if (io->chunked == 0) {
329 http_funopen(conn_t *conn, int chunked) argument
339 io->chunked = chunked;
1507 int chunked, direct, ims, noredirect, verbose; local
1543 chunked = 0;
1828 chunked
[all...]
/freebsd-10.0-release/contrib/unbound/smallapp/
H A Dunbound-anchor.c830 process_one_header(char* buf, size_t* clen, int* chunked) argument
840 if(!*chunked)
842 } else if(strncasecmp(buf, "Transfer-Encoding: chunked", 19+7) == 0) {
844 *chunked = 1;
901 int chunked = 0; local
906 if(!process_one_header(buf, clen, &chunked))
955 /** read chunked data from connection */
969 /* read the chunked start line */
996 /* read the chunked body */
1036 /** read chunked dat
[all...]

Completed in 83 milliseconds