From e897975660369d019723076d8bbeb667d1c2e6cf Mon Sep 17 00:00:00 2001 From: lwthiker <99899249+lwthiker@users.noreply.github.com> Date: Thu, 3 Mar 2022 15:16:27 +0200 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cccc152..c82dbe5 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,9 @@ CURLcode curl_easy_impersonate(struct Curl_easy *data, const char *target); ``` You can call it with the target names, e.g. `"chrome98"`, and it will internally set all the options and headers that are otherwise set by the wrapper scripts. Specifically it sets: * `CURLOPT_HTTP_VERSION` -* `CURLOPT_SSLVERSION` -* `CURLOPT_SSL_CIPHER_LIST` -* `CURLOPT_HTTPBASEHEADER` (non-standard option created for this project). +* `CURLOPT_SSLVERSION`, `CURLOPT_SSL_CIPHER_LIST`, `CURLOPT_SSL_EC_CURVES`, `CURLOPT_SSL_ENABLE_NPN`, `CURLOPT_SSL_ENABLE_ALPN` +* `CURLOPT_HTTPBASEHEADER` (non-standard HTTP option created for this project). +* `CURLOPT_SSL_ENABLE_ALPS`, `CURLOPT_SSL_SIG_HASH_ALGS`, `CURLOPT_SSL_CERT_COMPRESSION`, `CURLOPT_SSL_ENABLE_TICKET` (non-standard TLS options created for this project). Note that if you call `curl_easy_setopt()` later with one of the above it will override the options set by `curl_easy_impersonate()`.