summaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_mime_name.3
Commit message (Collapse)AuthorAgeFilesLines
* curl.se: new homeDaniel Stenberg2020-11-041-1/+1
| | | | Closes #6172
* terminology: call them null-terminated stringsDaniel Stenberg2020-06-281-2/+2
| | | | | | | | | | | Updated terminology in docs, comments and phrases to refer to C strings as "null-terminated". Done to unify with how most other C oriented docs refer of them and what users in general seem to prefer (based on a single highly unscientific poll on twitter). Reported-by: coinhubs on github Fixes #5598 Closes #5608
* form/mime: field names are not allowed to contain zero-valued bytes.Patrick Monnerat2017-09-221-11/+6
| | | | | Also suppress length argument of curl_mime_name() (names are always zero-terminated).
* docs/curl_mime_*.3: use correct variable types in examplesDaniel Stenberg2017-09-051-2/+2
|
* docs/curl_mime_*.3: added examplesDaniel Stenberg2017-09-051-0/+14
|
* docs: curl_mime_*.3 man page formatting editsDaniel Stenberg2017-09-041-8/+10
|
* mime: use size_t instead of ssize_t in public API interface.Patrick Monnerat2017-09-031-3/+3
| | | | | | | | | To support telling a string is nul-terminated, symbol CURL_ZERO_TERMINATED has been introduced. Documentation updated accordingly. symbols in versions updated. Added form API symbols deprecation info.
* mime: new MIME API.Patrick Monnerat2017-09-021-0/+52
Available in HTTP, SMTP and IMAP. Deprecates the FORM API. See CURLOPT_MIMEPOST. Lib code and associated documentation.