Lines Matching full:part
11 .\" * you should have received as part of this distribution. The terms
25 curl_mime_data - set a mime part's body data from memory
29 .BI "CURLcode curl_mime_data(curl_mimepart * " part ", const char * " data
33 \fIcurl_mime_data(3)\fP sets a mime part's body content from memory data.
35 \fIdata\fP points to the data bytes: those are copied to the part and their
40 \fIpart\fP is the part's to assign contents to.
42 Setting a part's contents twice is valid: only the value set by the last call
43 is retained. It is possible to unassign part's contents by setting
55 curl_mimepart *part;
60 /* add a part */
61 part = curl_mime_addpart(mime);
63 /* add data to the part */
64 curl_mime_data(part, "raw contents to send", CURL_ZERO_TERMINATED);