diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-06-16 17:36:50 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-06-17 00:03:07 +0200 |
commit | 477a4e31d724a9e14f92092c3d2ec8e486b99403 (patch) | |
tree | 2ddd807df64bc7f538b507800c3cdd9598c48201 /docs | |
parent | 83503c7240fca27477906017aff0e4a69659c615 (diff) | |
download | curl-477a4e31d724a9e14f92092c3d2ec8e486b99403.tar.gz |
manpage: add three missing environment variables
CURL_SSL_BACKEND, QLOGDIR and SSLKEYLOGFILE
Closes #5571
Diffstat (limited to 'docs')
-rw-r--r-- | docs/cmdline-opts/page-footer | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/docs/cmdline-opts/page-footer b/docs/cmdline-opts/page-footer index defe7e8b2..e76e7d250 100644 --- a/docs/cmdline-opts/page-footer +++ b/docs/cmdline-opts/page-footer @@ -36,7 +36,23 @@ accesses the target URL through the proxy. The list of host names can also be include numerical IP addresses, and IPv6 versions should then be given without enclosing brackets. - +.IP "CURL_SSL_BACKEND <TLS backend>" +If curl was built with support for "MultiSSL", meaning that it has built-in +support for more than one TLS backend, this environment variable can be set to +the case insensitive name of the particular backend to use when curl is +invokved. Setting a name that isn't a built-in alternative, will make curl +stay with the default. +.IP "QLOGDIR <directory name>" +If curl was built with HTTP/3 support, setting this environment variable to a +local directory will make curl produce qlogs in that directory, using file +names named after the destination connection id (in hex). Do note that these +files can become rather large. Works with both QUIC backends. +.IP "SSLKEYLOGFILE <file name>" +If you set this environment variable to a file name, curl will store TLS +secrets from its connections in that file when invoked to enable you to +analyze the TLS traffic in real time using network analyzing tools such as +Wireshark. This works with the following TLS backends: OpenSSL, libressl, +BoringSSL, GnuTLS, NSS and wolfSSL. .SH "PROXY PROTOCOL PREFIXES" Since curl version 7.21.7, the proxy string may be specified with a protocol:// prefix to specify alternative proxy protocols. |