Lines Matching defs:chunked
872 process_one_header(char* buf, size_t* clen, int* chunked)
882 if(!*chunked)
884 } else if(strncasecmp(buf, "Transfer-Encoding: chunked", 19+7) == 0) {
886 *chunked = 1;
943 int chunked = 0;
948 if(!process_one_header(buf, clen, &chunked))
1000 /** read chunked data from connection */
1014 /* read the chunked start line */
1041 /* read the chunked body */
1081 /** read chunked data and zero terminate; len is without zero */
1085 /* do the chunked version */
1094 if(verb>=2) printf("chunked data is %d\n", (int)l);