diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/tool_getparam.c | 5 | ||||
| -rw-r--r-- | src/tool_help.c | 1 | ||||
| -rw-r--r-- | src/tool_setopt.c | 1 | 
3 files changed, 7 insertions, 0 deletions
| diff --git a/src/tool_getparam.c b/src/tool_getparam.c index 95dd4555f..2d16e066d 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -190,6 +190,7 @@ static const struct LongShort aliases[]= {    {"10",  "tlsv1.0",                 FALSE},    {"11",  "tlsv1.1",                 FALSE},    {"12",  "tlsv1.2",                 FALSE}, +  {"13",  "tlsv1.3",                 FALSE},    {"2",  "sslv2",                    FALSE},    {"3",  "sslv3",                    FALSE},    {"4",  "ipv4",                     FALSE}, @@ -1061,6 +1062,10 @@ ParameterError getparameter(char *flag,    /* f or -long-flag */          /* TLS version 1.2 */          config->ssl_version = CURL_SSLVERSION_TLSv1_2;          break; +      case '3': +        /* TLS version 1.3 */ +        config->ssl_version = CURL_SSLVERSION_TLSv1_3; +        break;        }        break;      case '2': diff --git a/src/tool_help.c b/src/tool_help.c index fb428c9ca..9890cc83b 100644 --- a/src/tool_help.c +++ b/src/tool_help.c @@ -232,6 +232,7 @@ static const char *const helptext[] = {    "     --tlsv1.0       Use TLSv1.0 (SSL)",    "     --tlsv1.1       Use TLSv1.1 (SSL)",    "     --tlsv1.2       Use TLSv1.2 (SSL)", +  "     --tlsv1.3       Use TLSv1.3 (SSL)",    "     --trace FILE    Write a debug trace to FILE",    "     --trace-ascii FILE  Like --trace, but without hex output",    "     --trace-time    Add time stamps to trace/verbose output", diff --git a/src/tool_setopt.c b/src/tool_setopt.c index c854225e4..f3de09dee 100644 --- a/src/tool_setopt.c +++ b/src/tool_setopt.c @@ -83,6 +83,7 @@ const NameValue setopt_nv_CURL_SSLVERSION[] = {    NV(CURL_SSLVERSION_TLSv1_0),    NV(CURL_SSLVERSION_TLSv1_1),    NV(CURL_SSLVERSION_TLSv1_2), +  NV(CURL_SSLVERSION_TLSv1_3),    NVEND,  }; | 
