aboutsummaryrefslogtreecommitdiffstats
path: root/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2020-10-28 22:18:23 -0700
committerHaibo Huang <hhb@google.com>2020-11-11 14:04:46 -0800
commitb5a52b921a9e7144aa95b8dff2d66732c2a8efff (patch)
tree5d8dc61c3642298f09b9916bb6a8df99630852d4 /docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3
parent963b4486efcc9e99b5e50bdfb2562f1c9f536682 (diff)
downloadexternal_curl-b5a52b921a9e7144aa95b8dff2d66732c2a8efff.tar.gz
external_curl-b5a52b921a9e7144aa95b8dff2d66732c2a8efff.tar.bz2
external_curl-b5a52b921a9e7144aa95b8dff2d66732c2a8efff.zip
Upgrade curl to curl-7_73_0
Test: make Change-Id: Ib063c45f52a3c6892447f92e44043a14f01a917a
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.34
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3 b/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3
index afe7ff96..c3cc93f8 100644
--- a/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3
+++ b/docs/libcurl/opts/CURLOPT_TRANSFER_ENCODING.3
@@ -20,7 +20,7 @@
.\" *
.\" **************************************************************************
.\"
-.TH CURLOPT_TRANSFER_ENCODING 3 "May 15, 2017" "libcurl 7.72.0" "curl_easy_setopt options"
+.TH CURLOPT_TRANSFER_ENCODING 3 "September 16, 2020" "libcurl 7.73.0" "curl_easy_setopt options"
.SH NAME
CURLOPT_TRANSFER_ENCODING \- ask for HTTP Transfer Encoding
@@ -49,7 +49,7 @@ HTTP
.nf
CURL *curl = curl_easy_init();
if(curl) {
- curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
+ curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
curl_easy_setopt(curl, CURLOPT_TRANSFER_ENCODING, 1L);
curl_easy_perform(curl);
}