Lines Matching full:part
11 .\" * you should have received as part of this distribution. The terms
25 curl_mime_filename - set a mime part's remote file name
29 .BI "CURLcode curl_mime_filename(curl_mimepart * " part ,
33 \fIcurl_mime_filename(3)\fP sets a mime part's remote file name. When remote
34 file name is set, content data is processed as a file, whatever is the part's
35 content source. A part's remote file name is transmitted to the server in the
38 \fIpart\fP is the part's handle to assign the remote file name to.
43 The remote file name string is copied into the part, thus the associated
44 storage may safely be released or reused after call. Setting a part's file
53 curl_mimepart *part;
58 /* add a part */
59 part = curl_mime_addpart(mime);
62 curl_mime_data(part, imagebuf, imagebuf_len);
65 curl_mime_filename(part, "image.png");
68 curl_mime_name(part, "data");