]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CURLOPT_CAINFO_BLOB.3: explain what CURL_BLOB_COPY does
authorJay Satiro <raysatiro@yahoo.com>
Mon, 6 Nov 2023 07:09:31 +0000 (02:09 -0500)
committerJay Satiro <raysatiro@yahoo.com>
Sun, 12 Nov 2023 19:29:01 +0000 (14:29 -0500)
- Add an explanation of the CURL_BLOB_COPY flag to CURLOPT_CAINFO_BLOB
  and CURLOPT_PROXY_CAINFO_BLOB docs.

All the other _BLOB option docs already have the same explanation.

Closes https://github.com/curl/curl/pull/12277

docs/libcurl/opts/CURLOPT_CAINFO_BLOB.3
docs/libcurl/opts/CURLOPT_PROXY_CAINFO_BLOB.3

index ebb27111b98c9ce12f6ce9e4ee377799bbda0206..d3e26d3d05fa0ec8ce444082f2ce146e0300ae33 100644 (file)
@@ -37,6 +37,10 @@ Pass a pointer to a curl_blob structure, which contains information (pointer
 and size) about a memory block with binary data of PEM encoded content holding
 one or more certificates to verify the HTTPS server with.
 
+If the blob is initialized with the flags member of struct curl_blob set to
+CURL_BLOB_COPY, the application does not have to keep the buffer around after
+setting this.
+
 If \fICURLOPT_SSL_VERIFYPEER(3)\fP is zero and you avoid verifying the
 server's certificate, \fICURLOPT_CAINFO_BLOB(3)\fP is not needed.
 
index b2e8be03714b8a31205aafbe7a5125b346d14bca..5c8f2443bf00a4ea8d5100686d5804ef3e1277c4 100644 (file)
@@ -39,6 +39,10 @@ Pass a pointer to a curl_blob structure, which contains information (pointer
 and size) about a memory block with binary data of PEM encoded content holding
 one or more certificates to verify the HTTPS proxy with.
 
+If the blob is initialized with the flags member of struct curl_blob set to
+CURL_BLOB_COPY, the application does not have to keep the buffer around after
+setting this.
+
 If \fICURLOPT_PROXY_SSL_VERIFYPEER(3)\fP is zero and you avoid verifying the
 server's certificate, \fICURLOPT_PROXY_CAINFO_BLOB(3)\fP is not needed.