Sortix main manual
This manual documents Sortix main. You can instead view this document in the latest official manual.
curl_mime_free(3) | libcurl Manual | curl_mime_free(3) |
NAME
curl_mime_free - free a previously built mime structureDESCRIPTION
curl_mime_free(3) is used to clean up data previously built/appended with curl_mime_addpart(3) and other mime-handling functions. This must be called when the data has been used, which typically means after curl_easy_perform(3) has been called.EXAMPLE
/* Build the mime message. */
mime = curl_mime_init(curl);
/* ... */
/* Free multipart message. */
curl_mime_free(mime);
AVAILABILITY
As long as at least one of HTTP, SMTP or IMAP is enabled. Added in 7.56.0.RETURN VALUE
NoneSEE ALSO
curl_mime_init(3)May 17, 2022 | libcurl 7.84.0 |