* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
**************************************************************************
"binary": the data is left unchanged, the header is added.
"8bit": header added, no data change.
"7bit": the data is unchanged, but is each byte is checked to be a 7-bit value; if not, a read error occurs.
"base64": Data is converted to base64 encoding, then split in CRLF-terminated lines of at most 76 characters.
"quoted-printable": data is encoded in quoted printable lines of at most 76 characters. Since the resulting size of the final data cannot be determined prior to reading the original data, it is left as unknown, causing chunked transfer in HTTP. For the same reason, this encoder may not be used with IMAP. This encoder targets text data that is mostly ASCII and should not be used with other types of data. If the original data is already encoded in such a scheme, a custom Content-Transfer-Encoding header should be added with \FIcurl_mime_headers() instead of setting a part encoder. Encoding should not be applied to multiparts, thus the use of this function on a part with content set with curl_mime_subparts() is strongly discouraged.
curl_mime *mime; curl_mimepart *part; /* create a mime handle */ mime = curl_mime_init(easy); /* add a part */ part = curl_mime_addpart(mime); /* send a file */ curl_mime_filedata(part, "image.png"); /* encode file data in base64 for transfer */ curl_mime_encoder(part, "base64");