Skip to content
Snippets Groups Projects
Commit a2c78607 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

CURLOPT_SSL_CIPHER_LIST support

parent cc1a4edf
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment