Home | History | Annotate | Download | only in microhttpd

Lines Matching full:chunked

701       /* 2 bytes for final CRLF of a Chunked-Body */
732 /* now analyze chunked encoding situation */
740 need to either to HTTP 1.1 chunked encoding or
757 /* application forced identity encoding, can't do 'chunked' */
832 size += strlen ("Transfer-Encoding: chunked\r\n");
877 /* we must add the 'Transfer-Encoding: chunked' header */
879 "Transfer-Encoding: chunked\r\n",
880 strlen ("Transfer-Encoding: chunked\r\n"));
881 off += strlen ("Transfer-Encoding: chunked\r\n");
1513 "Received malformed HTTP request (bad chunked encoding), closing connection.\n");
1565 "Received malformed HTTP request (bad chunked encoding), closing connection.\n");
1589 /* no chunked encoding, give all to the client */
1599 * 1. no chunked encoding, give all to the client
1600 * 2. client may send large chunked data, but only a smaller part is available at one time.
1930 if (MHD_str_equal_caseless_(enc, "chunked"))