看起来,用ubuntu填充的curl不支持http3。如何启用卷曲的http3?
发布于 2019-10-04 05:55:22
你必须构建实验版本,它还没有作为一个软件包发布。
cd ..
git clone https://github.com/curl/curl
cd curl
./buildconf
LDFLAGS="-Wl,-rpath,<somewhere1>/lib" ./configure --with-ssl=<somewhere1> --with-nghttp3=<somewhere2> --with-ngtcp2=<somewhere3>
make发布于 2022-05-27 22:03:55
我发现使用ymuski/curl-http3码头映像是最简单的:
docker run --rm ymuski/curl-http3 curl --http3 https://example.org/https://askubuntu.com/questions/1178611
复制相似问题