Lines Matching refs:part
21 curl_mime_filedata - set a mime part's body data from a file contents
28 CURLcode curl_mime_filedata(curl_mimepart *part,
34 curl_mime_filedata(3) sets a mime part's body content from the named
36 data to a mime part.
38 *part* is the part's to assign contents to.
41 be NULL to detach the previous part contents settings. Filename storage can
44 As a side effect, the part's remote filename is set to the base name of the
54 part is transferred using chunks by HTTP but is rejected by IMAP.
56 Setting a part's contents multiple times is valid: only the value set by the
67 curl_mimepart *part;
74 /* add a part */
75 part = curl_mime_addpart(mime);
78 curl_mime_filedata(part, "image.png");
81 curl_mime_name(part, "data");