mirror of
https://github.com/curl/curl.git
synced 2024-12-09 06:30:06 +08:00
68784d73c3
The file format for each option now features a "Example:" header that can provide one or more examples that get rendered appropriately in the output. All options MUST have at least one example or gen.pl complains at build-time. This fix also does a few other minor format and consistency cleanups. Closes #7654
31 lines
663 B
D
31 lines
663 B
D
Long: tls-max
|
|
Arg: <VERSION>
|
|
Tags: Versions
|
|
Protocols: SSL
|
|
Added: 7.54.0
|
|
Requires: TLS
|
|
See-also: tlsv1.0 tlsv1.1 tlsv1.2 tlsv1.3
|
|
Help: Set maximum allowed TLS version
|
|
Category: tls
|
|
Example: --tls-max 1.2 $URL
|
|
Example: --tls-max 1.3 --tlsv1.2 $URL
|
|
---
|
|
VERSION defines maximum supported TLS version. The minimum acceptable version
|
|
is set by tlsv1.0, tlsv1.1, tlsv1.2 or tlsv1.3.
|
|
|
|
If the connection is done without TLS, this option has no effect. This
|
|
includes QUIC-using (HTTP/3) transfers.
|
|
|
|
.RS
|
|
.IP "default"
|
|
Use up to recommended TLS version.
|
|
.IP "1.0"
|
|
Use up to TLSv1.0.
|
|
.IP "1.1"
|
|
Use up to TLSv1.1.
|
|
.IP "1.2"
|
|
Use up to TLSv1.2.
|
|
.IP "1.3"
|
|
Use up to TLSv1.3.
|
|
.RE
|