summaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLOPT_NOBODY.html
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2015-06-17 09:38:25 +0200
committerAlessandro Ghedini <alessandro@ghedini.me>2015-06-17 09:38:25 +0200
commitdbada9f3efae6d9d47b24d0fc06b31d5c48e59a9 (patch)
tree453623e63c0fe6672f0222a33b702b21991c3d85 /docs/libcurl/opts/CURLOPT_NOBODY.html
parentbff9831a91669600de53ca4ed6022cb212a40b8a (diff)
Imported Upstream version 7.43.0
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_NOBODY.html')
-rw-r--r--docs/libcurl/opts/CURLOPT_NOBODY.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/opts/CURLOPT_NOBODY.html b/docs/libcurl/opts/CURLOPT_NOBODY.html
index e82a3bab..3ca44189 100644
--- a/docs/libcurl/opts/CURLOPT_NOBODY.html
+++ b/docs/libcurl/opts/CURLOPT_NOBODY.html
@@ -62,10 +62,10 @@ p.roffit {
curl = curl_easy_init();
if(curl) {
&nbsp; curl_easy_setopt(curl, CURLOPT_URL, "<a href="http://example.com">http://example.com</a>");
-
+&nbsp;
&nbsp; /* get us the resource without a body! */
&nbsp; curl_easy_setopt(curl, CURLOPT_NOBODY, 1L);
-
+&nbsp;
&nbsp; /* Perform the request */
&nbsp; curl_easy_perform(curl);
}