Lines Matching defs:encoding
46 /* url encoding-states */
50 /* post encoding-states */
56 /* nested post-encoding states */
137 * Encoding as given by the headers of the
140 const char *encoding;
143 * Primary boundary (points into encoding string)
148 * Nested boundary (if we have multipart/mixed encoding).
168 * Pointer to the (current) encoding.
174 * sequences (URL-encoding only).
251 * fail to set the encoding type. If you want to support those, you
252 * may have to call #MHD_set_connection_value with the proper encoding
253 * type before creating a post processor (if no supported encoding
267 * @return NULL on error (out of memory, unsupported encoding),
277 const char *encoding;
283 encoding = MHD_lookup_connection_value (connection,
286 if (encoding == NULL)
289 if (!MHD_str_equal_caseless_n_ (MHD_HTTP_POST_ENCODING_FORM_URLENCODED, encoding,
292 if (!MHD_str_equal_caseless_n_ (MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA, encoding,
296 &encoding[strlen (MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA)];
323 ret->encoding = encoding;
676 try_match_header ("Content-Transfer-Encoding: ",
1139 if (MHD_str_equal_caseless_n_ (MHD_HTTP_POST_ENCODING_FORM_URLENCODED, pp->encoding,
1142 if (MHD_str_equal_caseless_n_ (MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA, pp->encoding,