diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-09-11 22:23:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-09-11 22:23:16 +0000 |
commit | a2c78607a6f195eac8b9ecadb9a94d94f92bc5bd (patch) | |
tree | c3a5a909b4872805cc4f821f71b6826d256f620b | |
parent | cc1a4edf3df3d5bdbcf73120140bb7da98ca2484 (diff) |
CURLOPT_SSL_CIPHER_LIST support
-rw-r--r-- | lib/url.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -289,6 +289,11 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...) va_start(param, option); switch(option) { + case CURLOPT_SSL_CIPHER_LIST: + /* set a list of cipher we want to use in the SSL connection */ + data->set.ssl.cipher_list = va_arg(param, char *); + break; + case CURLOPT_RANDOM_FILE: /* * This is the path name to a file that contains random data to seed |