diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-08-30 11:09:49 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-30 11:09:49 +0000 |
commit | 0e0caf7c063c282fb35b8ab87fde1d38fe32d489 (patch) | |
tree | 6acc7ac64ff0f0b1dd98cee86bbd2709909317c4 /include | |
parent | 5644f4a2957378fb480369d2f1c9d5ccc4ebac6f (diff) |
CURLE_SSL_INSECURE is removed again and so is CURLOPT_SSL_INSECURE, we
proceed fine with the already existing options, just having a different
internal library default for capath.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 00a7fa88a..1b20a674e 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -197,8 +197,10 @@ typedef enum { CURLE_SEND_ERROR, /* 55 - failed sending network data */ CURLE_RECV_ERROR, /* 56 - failure in receiving network data */ CURLE_SHARE_IN_USE, /* 57 - share is in use */ - CURLE_SSL_INSECURE, /* 58 - connect attempt without certificate - but SSL_INSECURE not explicitly allowed */ + CURLE_SSL_CERTPROBLEM, /* 58 - problem with the local certificate */ + CURLE_SSL_CIPHER, /* 59 - couldn't use specified cipher */ + CURLE_SSL_CACERT, /* 60 - problem with the CA cert (path?) */ + CURL_LAST /* never use! */ } CURLcode; @@ -579,12 +581,9 @@ typedef enum { /* Provide a CURLShare for mutexing non-ts data */ CINIT(SHARE, OBJECTPOINT, 100), - /* Explicitly allow insecure SSL connects */ - CINIT(SSL_INSECURE, LONG, 101), - /* indicates type of proxy. accepted values are CURLPROXY_HTTP (default), CURLPROXY_SOCKS4 and CURLPROXY_SOCKS5. */ - CINIT(PROXYTYPE, LONG, 102), + CINIT(PROXYTYPE, LONG, 101), CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |