Home | History | Annotate | Download | only in microhttpd

Lines Matching full:malformed

81  * malformed.
87 #define REQUEST_MALFORMED "<html><head><title>Request malformed</title></head><body>Your HTTP request was syntactically incorrect.</body></html>"
1289 * @return #MHD_YES for success, #MHD_NO for failure (malformed, out of memory)
1388 * @return #MHD_YES if the line is ok, #MHD_NO if it is malformed
1484 int malformed;
1511 /* malformed encoding */
1513 "Received malformed HTTP request (bad chunked encoding), closing connection.\n");
1554 malformed = (i >= 6);
1555 if (!malformed)
1559 malformed = ('\0' != *end);
1561 if (malformed)
1563 /* malformed encoding */
1565 "Received malformed HTTP request (bad chunked encoding), closing connection.\n");
1772 * @return #MHD_YES on success, #MHD_NO on error (malformed @a line)
1785 "Received malformed line (no colon), closing connection.\n");