Lines Matching refs:mime
21 curl_mime_init - create a mime handle
33 curl_mime_init(3) creates a handle to a new empty mime structure.
34 This mime structure can be subsequently filled using the mime API, then
36 a curl_easy_setopt(3) call or added as a multipart in another mime
42 Using a mime handle is the recommended way to post an HTTP form, format and
53 curl_mime *mime;
57 mime = curl_mime_init(easy);
58 part = curl_mime_addpart(mime);
63 curl_easy_setopt(easy, CURLOPT_MIMEPOST, mime);
69 curl_mime_free(mime);
77 A mime struct handle, or NULL upon failure.