Lines Matching full:part
15 curl_mime_name - set a mime part's name
22 CURLcode curl_mime_name(curl_mimepart *part, const char *name);
27 curl_mime_name(3) sets a mime part's name. This is the way HTTP form
30 *part* is the part's handle to assign a name to.
34 The name string is copied into the part, thus the associated storage may
35 safely be released or reused after call. Setting a part's name multiple times
37 reset the name of a part by setting *name* to NULL.
45 curl_mimepart *part;
52 /* add a part */
53 part = curl_mime_addpart(mime);
55 /* give the part a name */
56 curl_mime_name(part, "shoe_size");