Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-01-14 | docs: comment about CURLE_READ_ERROR returned by curl_mime_filedata | Patrick Monnerat | |
2017-10-23 | curl_mime_filedata.3: fix typos | Alessandro Ghedini | |
2017-10-08 | docs: clarify form/mime usage of non-regular data files. | Patrick Monnerat | |
2017-09-22 | form/mime: field names are not allowed to contain zero-valued bytes. | Patrick Monnerat | |
Also suppress length argument of curl_mime_name() (names are always zero-terminated). | |||
2017-09-05 | docs/curl_mime_*.3: use correct variable types in examples | Daniel Stenberg | |
2017-09-05 | docs/curl_mime_*.3: added examples | Daniel Stenberg | |
2017-09-04 | docs: curl_mime_*.3 man page formatting edits | Daniel Stenberg | |
2017-09-03 | mime: remove support "-" stdin pseudo-file name in curl_mime_filedata(). | Patrick Monnerat | |
This feature is badly supported in Windows: as a replacement, a caller has to use curl_mime_data_cb() with fread, fseek and possibly fclose callbacks to process opened files. The cli tool and documentation are updated accordingly. The feature is however kept internally for form API compatibility, with the known caveats it always had. As a side effect, stdin size is not determined by the cli tool even if possible and this results in a chunked transfer encoding. Test 173 is updated accordingly. | |||
2017-09-02 | mime: new MIME API. | Patrick Monnerat | |
Available in HTTP, SMTP and IMAP. Deprecates the FORM API. See CURLOPT_MIMEPOST. Lib code and associated documentation. |