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

/freebsd-10-stable/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-stable/contrib/ntp/sntp/libevent/include/event2/
H A Dhttp_struct.h108 unsigned chunked:1, /* a chunked request */ member in struct:evhttp_request
/freebsd-10-stable/contrib/serf/buckets/
H A Dresponse_buckets.c42 int chunked; /* Do we need to read trailers? */ member in struct:__anon4432
81 ctx->chunked = 0;
276 /* Are we C-L, chunked, or conn close? */
291 if (v && strcasecmp("chunked", v) == 0) {
292 ctx->chunked = 1;
416 if (ctx->chunked) {
/freebsd-10-stable/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-stable/lib/libfetch/
H A Dhttp.c125 * I/O functions for decoding chunked streams
131 int chunked; /* chunked mode */ member in struct:httpio
219 /* not chunked: just fetch the requested amount */
220 if (io->chunked == 0) {
232 /* chunked, but we ran out: get the next chunk header */
330 http_funopen(conn_t *conn, int chunked) argument
340 io->chunked = chunked;
1547 int chunked, direc local
[all...]
/freebsd-10-stable/contrib/unbound/smallapp/
H A Dunbound-anchor.c831 process_one_header(char* buf, size_t* clen, int* chunked) argument
841 if(!*chunked)
843 } else if(strncasecmp(buf, "Transfer-Encoding: chunked", 19+7) == 0) {
845 *chunked = 1;
902 int chunked = 0; local
907 if(!process_one_header(buf, clen, &chunked))
959 /** read chunked data from connection */
973 /* read the chunked start line */
1000 /* read the chunked body */
1040 /** read chunked dat
[all...]
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Dhttp.c842 * Handles reading from a chunked request.
973 if (req->chunked) {
1017 (!req->chunked && req->ntoread >= 0 &&
1381 if (!req->chunked && req->ntoread < 0
2092 if (xfer_enc != NULL && evutil_ascii_strcasecmp(xfer_enc, "chunked") == 0) {
2093 req->chunked = 1;
2699 * prefer HTTP/1.1 chunked encoding to closing the connection;
2704 "chunked");
2705 req->chunked = 1;
2707 req->chunked
[all...]

Completed in 129 milliseconds