diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-09-11 22:36:43 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-09-11 22:36:43 +0000 |
commit | be47d835556ed56679b11b0cc74132759d07da05 (patch) | |
tree | 8fa5f8fe817749a0f87ff340df41d99889287785 /include | |
parent | d5054ad52d51a202f9bc3e679577445c26396105 (diff) |
added CURLOPT_SSL_CIPHER_LIST
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index ddf7d3870..698d84625 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -457,6 +457,9 @@ typedef enum { /* Specify which file name to write all known cookies in after completed operation. Set file name to "-" (dash) to make it go to stdout. */ CINIT(COOKIEJAR, OBJECTPOINT, 82), + + /* Specify which SSL ciphers to use */ + CINIT(SSL_CIPHER_LIST, OBJECTPOINT, 83), CURLOPT_LASTENTRY /* the last unusued */ } CURLoption; |