Lines Matching full:part
15 curl_mime_encoder - set a mime part's encoder and content transfer encoding
22 CURLcode curl_mime_encoder(curl_mimepart *part, const char *encoding);
27 curl_mime_encoder() requests a mime part's content to be encoded before being
30 *part* is the part's handle to assign an encoder.
32 set to NULL to disable an encoder previously attached to the part. The encoding
35 Setting a part's encoder multiple times is valid: only the value set by the
38 Upon multipart rendering, the part's content is encoded according to the
40 is added to the part.
63 curl_mime_headers(3) instead of setting a part encoder.
66 a part with content set with curl_mime_subparts(3) is strongly
75 curl_mimepart *part;
82 /* add a part */
83 part = curl_mime_addpart(mime);
86 curl_mime_filedata(part, "image.png");
89 curl_mime_encoder(part, "base64");