summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPatrick Monnerat <patrick@monnerat.net>2023-03-25 15:22:57 +0100
committerDaniel Stenberg <daniel@haxx.se>2023-03-26 16:39:58 +0200
commit61d4260434e91a98c79eb4ffbc9e9907e01a3e0d (patch)
tree826c02f3780e402b57b831f1f3aef8bb0bc8654d /docs
parente5588ced30f6a8c40b46fcfb7e5cd3ab07c46b6c (diff)
downloadcurl-61d4260434e91a98c79eb4ffbc9e9907e01a3e0d.tar.gz
doc: curl_mime_init() strong easy handle binding has been relaxed in 7.87.0
Reported-by: Chloe Kudryavtsev Fixes #10834 Closes #10835
Diffstat (limited to 'docs')
-rw-r--r--docs/libcurl/curl_mime_init.34
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/curl_mime_init.3 b/docs/libcurl/curl_mime_init.3
index dc7f7b1f1..de2c12835 100644
--- a/docs/libcurl/curl_mime_init.3
+++ b/docs/libcurl/curl_mime_init.3
@@ -31,14 +31,14 @@ curl_mime_init - create a mime handle
curl_mime *curl_mime_init(CURL *easy_handle);
.fi
.SH DESCRIPTION
-\fIcurl_mime_init(3)\fP creates a handle to a new empty mime structure,
+\fIcurl_mime_init(3)\fP creates a handle to a new empty mime structure.
This mime structure can be subsequently filled using the mime API, then
attached to some easy handle using option \fICURLOPT_MIMEPOST(3)\fP within
a \fIcurl_easy_setopt(3)\fP call or added as a multipart in another mime
handle's part using \fIcurl_mime_subparts(3)\fP.
\fIeasy_handle\fP is used for part separator randomization and error
-reporting. It does not need to be the final target handle.
+reporting. Since 7.87.0, it does not need to be the final target handle.
Using a mime handle is the recommended way to post an HTTP form, format and
send a multi-part email with SMTP or upload such an email to an IMAP server.