Lines Matching full:part
16 curl_mime_filedata - set a mime part's body data from a file contents
23 CURLcode curl_mime_filedata(curl_mimepart *part,
29 curl_mime_filedata(3) sets a mime part's body content from the named
31 data to a mime part.
33 *part* is the part's to assign contents to.
36 be NULL to detach the previous part contents settings. Filename storage can
39 As a side effect, the part's remote filename is set to the base name of the
49 part is transferred using chunks by HTTP but is rejected by IMAP.
51 Setting a part's contents multiple times is valid: only the value set by the
60 curl_mimepart *part;
67 /* add a part */
68 part = curl_mime_addpart(mime);
71 curl_mime_filedata(part, "image.png");
74 curl_mime_name(part, "data");