diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-09-30 21:01:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-09-30 21:01:23 +0000 |
commit | be1cece69b2bc7b73c07166ec5e164fabdac1c95 (patch) | |
tree | 9191ac933a02caa4ab288e8b64ebd32e0d474f6b /docs/libcurl | |
parent | 45be6d6645ebc20d9fac83ba2b1c17327faced49 (diff) |
- Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows an
app to retrieve the errno variable after a (connect) failure. It will make
sense to provide this for more failures in a more generic way, but let's
start like this.
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_easy_getinfo.3 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_getinfo.3 b/docs/libcurl/curl_easy_getinfo.3 index dcf993f04..fba414a7f 100644 --- a/docs/libcurl/curl_easy_getinfo.3 +++ b/docs/libcurl/curl_easy_getinfo.3 @@ -110,6 +110,8 @@ CURLOPT_HTTPAUTH option for \fIcurl_easy_setopt(3)\fP. (Added in 7.10.8) .IP CURLINFO_PROXYAUTH_AVAIL Pass a pointer to a long to receive a bitmask indicating the authentication method(s) available for your proxy authentication. (Added in 7.10.8) +.IP CURLINFO_OS_ERRNO +Pass a pointer to a long to receive the errno variable from a connect failure. .SH RETURN VALUE If the operation was successful, CURLE_OK is returned. Otherwise an appropriate error code will be returned. |