Lines Matching refs:part
21 curl_mime_data - set a mime part's body data from memory
28 CURLcode curl_mime_data(curl_mimepart *part, const char *data,
34 curl_mime_data(3) sets a mime part's body content from memory data.
36 *part* is the mime part to assign contents to, created with
46 Setting a part's contents multiple times is valid: only the value set by the
47 last call is retained. It is possible to unassign part's contents by setting
61 curl_mimepart *part;
68 /* add a part */
69 part = curl_mime_addpart(mime);
71 /* add data to the part */
72 curl_mime_data(part, "raw contents to send", CURL_ZERO_TERMINATED);