diff options
author | Stan Grishin <stangri@melmac.net> | 2021-07-30 13:34:04 +0000 |
---|---|---|
committer | Stan Grishin <stangri@melmac.net> | 2021-07-30 23:15:06 +0000 |
commit | 83b4d4f89c47cf11b002584aab5028b0696ea789 (patch) | |
tree | 019f85b3ecb3ae79286d33733a66de9f736af57d /net/curl/Config.in | |
parent | 23023e08f583be6d74e85240455ae690c1c1ff12 (diff) |
curl: enable HTTP/2 support by default
Description: Lack of support of HTTP/2 by default starts to hurt,
for example with https-dns-proxy package, some DoH resolvers (like mullvad)
no longer support HTTP/1 and are not usable.
This enables HTTP/2 support by default (which would bring ~68Kb libnghttp).
Signed-off-by: Stan Grishin <stangri@melmac.net>
Diffstat (limited to 'net/curl/Config.in')
-rw-r--r-- | net/curl/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/curl/Config.in b/net/curl/Config.in index 0c4fcb7cf..afb7f8151 100644 --- a/net/curl/Config.in +++ b/net/curl/Config.in @@ -103,7 +103,7 @@ config LIBCURL_TFTP config LIBCURL_NGHTTP2 bool "HTTP2 protocol" - default n + default y comment "Miscellaneous" |