summaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3
diff options
context:
space:
mode:
authorAlessandro Ghedini <ghedo@debian.org>2020-12-31 11:43:56 +0100
committerAlessandro Ghedini <ghedo@debian.org>2020-12-31 11:43:56 +0100
commit50a389ade96c0e69ed0ec9d20d075e6d8641a510 (patch)
tree1efdc1536fccd8a6fc8830b0866c2826ce744780 /docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3
parentfea0dcbfd05f0524ea51e68ebe570fd9b531ab95 (diff)
New upstream version 7.74.0
Diffstat (limited to 'docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3')
-rw-r--r--docs/libcurl/opts/CURLINFO_NUM_CONNECTS.36
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3 b/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3
index ef20576f..92b26250 100644
--- a/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3
+++ b/docs/libcurl/opts/CURLINFO_NUM_CONNECTS.3
@@ -9,7 +9,7 @@
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
-.\" * are also available at https://curl.haxx.se/docs/copyright.html.
+.\" * are also available at https://curl.se/docs/copyright.html.
.\" *
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
.\" * copies of the Software, and permit persons to whom the Software is
@@ -20,7 +20,7 @@
.\" *
.\" **************************************************************************
.\"
-.TH CURLINFO_NUM_CONNECTS 3 "May 06, 2017" "libcurl 7.72.0" "curl_easy_getinfo options"
+.TH CURLINFO_NUM_CONNECTS 3 "November 04, 2020" "libcurl 7.74.0" "curl_easy_getinfo options"
.SH NAME
CURLINFO_NUM_CONNECTS \- get number of created connections
@@ -42,7 +42,7 @@ All
CURL *curl = curl_easy_init();
if(curl) {
CURLcode res;
- curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
+ curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
res = curl_easy_perform(curl);
if(res == CURLE_OK) {