-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vquic: add support for GnuTLS backend of ngtcp2 #5148
Conversation
Lovely! Can you also update Do you have any ideas or guesses on when we can hope for this work to be merged into the master branches of GnuTLS and ngtcp2? It think it also makes sense to create a CI job that verifies the build, in the same spirit as the existing ngtcp2-openssl build is done. We can of course do that as a second follow-up PR. |
I just merged GnuTLS support into ngtcp2. |
Thank you; updated the patches with the suggested changes. |
Sure, filed a separate PR as #5168. |
Currently, the TLS backend used by vquic/ngtcp2.c is selected at compile time. Therefore OpenSSL support needs to be explicitly disabled. Signed-off-by: Daiki Ueno <dueno@redhat.com>
f692bb8
to
ded8586
Compare
The build in Travis CI seems to have succeeded (finally): https://travis-ci.org/github/curl/curl/jobs/669087295 |
Thank you! |
This can be built with the same steps as the ngtcp2 + OpenSSL procedure mentioned in
docs/HTTP3.md
, except:tmp-quic
branch) needs to be installed instead--with-gnutls
instead of--with-ssl
Currently, the TLS backend used by
vquic/ngtcp2.c
is selected at compile time. Therefore OpenSSL support needs to be explicitly disabled.