Lines Matching refs:part
20 curl_mime_name - set a mime part's name
27 CURLcode curl_mime_name(curl_mimepart *part, const char *name);
32 curl_mime_name(3) sets a mime part's name. This is the way HTTP form
35 *part* is the part's handle to assign a name to.
39 The name string is copied into the part, thus the associated storage may
40 safely be released or reused after call. Setting a part's name multiple times
42 reset the name of a part by setting *name* to NULL.
52 curl_mimepart *part;
59 /* add a part */
60 part = curl_mime_addpart(mime);
62 /* give the part a name */
63 curl_mime_name(part, "shoe_size");