CURLINFO_RESPONSE_CODE.3: add example
This commit is contained in:

committed by
Jay Satiro

parent
be538e0766
commit
1074cca8cd
@@ -38,7 +38,19 @@ Support for SMTP responses added in 7.25.0.
|
|||||||
.SH PROTOCOLS
|
.SH PROTOCOLS
|
||||||
HTTP, FTP and SMTP
|
HTTP, FTP and SMTP
|
||||||
.SH EXAMPLE
|
.SH EXAMPLE
|
||||||
TODO
|
.nf
|
||||||
|
CURL *curl = curl_easy_init();
|
||||||
|
if(curl) {
|
||||||
|
CURLcode res;
|
||||||
|
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
|
||||||
|
res = curl_easy_perform(curl);
|
||||||
|
if(res == CURLE_OK) {
|
||||||
|
long response_code;
|
||||||
|
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code);
|
||||||
|
}
|
||||||
|
curl_easy_cleanup(curl);
|
||||||
|
}
|
||||||
|
.fi
|
||||||
.SH AVAILABILITY
|
.SH AVAILABILITY
|
||||||
Added in 7.10.8. CURLINFO_HTTP_CODE was added in 7.4.1.
|
Added in 7.10.8. CURLINFO_HTTP_CODE was added in 7.4.1.
|
||||||
.SH RETURN VALUE
|
.SH RETURN VALUE
|
||||||
|
Reference in New Issue
Block a user