diff options
author | Matt Jolly <kangie@gentoo.org> | 2024-06-21 21:12:46 +1000 |
---|---|---|
committer | Matt Jolly <kangie@gentoo.org> | 2024-06-29 16:52:35 +1000 |
commit | c0da9c4d2ad8be255070910d6af12ae9d5fd221f (patch) | |
tree | 15781abc1ece5a5c4d9ed5b740680e6f03af8213 /profiles/desc | |
parent | profiles/desc: curl_ssl - remove fbopenssl comment (diff) | |
download | gentoo-c0da9c4d2ad8be255070910d6af12ae9d5fd221f.tar.gz gentoo-c0da9c4d2ad8be255070910d6af12ae9d5fd221f.tar.bz2 gentoo-c0da9c4d2ad8be255070910d6af12ae9d5fd221f.zip |
profiles: add CURL_QUIC USE_EXPAND
The CURL_QUIC USE_EXPAND enables us to sanely manage QUIC (RFC 9000)
backends as they are added to cURL in the future: currently there are
two supported implementations, OpenSSL and ngtcp2, however it's likely
that other popular TLS libraries will expose QUIC APIs over time,
and that these will be eventually be supported by cURL (see CURL_SSL
for examples of TLS libraries that we support) - we may as well
get ahead of the curve here.
There are already a number of other small players (i.e. OpenSSL Forks)
exposing QUIC support for quite a while, however these have not been
available in ::gentoo and we've only needed the one USE to enable
for HTTP/3 and QUIC to this point.
Signed-off-by: Matt Jolly <kangie@gentoo.org>
Diffstat (limited to 'profiles/desc')
-rw-r--r-- | profiles/desc/curl_quic.desc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/profiles/desc/curl_quic.desc b/profiles/desc/curl_quic.desc new file mode 100644 index 000000000000..372bb9ce8f83 --- /dev/null +++ b/profiles/desc/curl_quic.desc @@ -0,0 +1,7 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# This file contains descriptions of CURL_QUIC USE_EXPAND flags for net-misc/curl + +openssl - Use OpenSSL +ngtcp2 - Use ngtcp2 |