Lines Matching refs:part
20 curl_mime_encoder - set a mime part's encoder and content transfer encoding
27 CURLcode curl_mime_encoder(curl_mimepart *part, const char *encoding);
32 curl_mime_encoder() requests a mime part's content to be encoded before being
35 *part* is the part's handle to assign an encoder.
37 set to NULL to disable an encoder previously attached to the part. The encoding
40 Setting a part's encoder multiple times is valid: only the value set by the
43 Upon multipart rendering, the part's content is encoded according to the
45 is added to the part.
68 curl_mime_headers(3) instead of setting a part encoder.
71 a part with content set with curl_mime_subparts(3) is strongly
82 curl_mimepart *part;
89 /* add a part */
90 part = curl_mime_addpart(mime);
93 curl_mime_filedata(part, "image.png");
96 curl_mime_encoder(part, "base64");