aboutsummaryrefslogtreecommitdiffstats
path: root/docs/libcurl/opts/CURLOPT_PROXY.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_PROXY.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_PROXY.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_PROXY.34
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/opts/CURLOPT_PROXY.3 b/docs/libcurl/opts/CURLOPT_PROXY.3
index 4a11969e..9f1c45b1 100644
--- a/docs/libcurl/opts/CURLOPT_PROXY.3
+++ b/docs/libcurl/opts/CURLOPT_PROXY.3
@@ -20,7 +20,7 @@
.\" *
.\" **************************************************************************
.\"
-.TH CURLOPT_PROXY 3 "June 25, 2020" "libcurl 7.72.0" "curl_easy_setopt options"
+.TH CURLOPT_PROXY 3 "September 16, 2020" "libcurl 7.73.0" "curl_easy_setopt options"
.SH NAME
CURLOPT_PROXY \- set proxy to use
@@ -96,7 +96,7 @@ All except file://. Note that some protocols don't do very well over proxy.
.nf
CURL *curl = curl_easy_init();
if(curl) {
- curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/file.txt");
+ curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/file.txt");
curl_easy_setopt(curl, CURLOPT_PROXY, "http://proxy:80");
curl_easy_perform(curl);
}