diff options
author | Daniel Gustafsson <daniel@yesql.se> | 2018-10-30 16:56:51 +0100 |
---|---|---|
committer | Daniel Gustafsson <daniel@yesql.se> | 2018-10-30 16:56:51 +0100 |
commit | 1460e89e01e2c471d60fbdd0f5905217152d69c1 (patch) | |
tree | 94e484adcaa88f993a66cb3c2c88f4faad768b53 /include | |
parent | 98d9a33de41f70f9f7ca8b82e69563475376387c (diff) |
vtls: add MesaLink to curl_sslbackend enum
MesaLink support was added in commit 57348eb97d1b8fc3742e02c but the
backend was never added to the curl_sslbackend enum in curl/curl.h.
This adds the new backend to the enum and updates the relevant docs.
Closes #3195
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 2cd611818..cf6f01de9 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -146,7 +146,8 @@ typedef enum { CURLSSLBACKEND_SCHANNEL = 8, CURLSSLBACKEND_DARWINSSL = 9, CURLSSLBACKEND_AXTLS = 10, - CURLSSLBACKEND_MBEDTLS = 11 + CURLSSLBACKEND_MBEDTLS = 11, + CURLSSLBACKEND_MESALINK = 12 } curl_sslbackend; /* aliases for library clones and renames */ |