-
-
Notifications
You must be signed in to change notification settings - Fork 971
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
[Feature Request] HTTP2 and HTTP3 support #1070
Comments
There is another library: https://github.com/quicsec/quicsec. This is more likely higher-level than the quiche library. |
The most important feature that HTTP3 provides is higher reliability on unreliable connections which were mainly developed with the Indian market in mind. Perhaps their internet is no longer as unreliable but there are still plenty of people worldwide that have reliability problems using HTTP2. |
This comment was marked as off-topic.
This comment was marked as off-topic.
CURL already has support for HTTP/2 and HTTP/3. Can we close this issue? |
No, because HTTP/3 support is still experimental in curl |
According to https://curl.se/docs/http3.html,
However, according to the I think the best way is to refer to the QUIC and HTTP3 protocol documents like RFC 9000 and to implement it with the libraries ladybird is currently using as the basis. Then we will have a library called LibQUIC or an enhanced LibHTTP. Or we could contribute to the existing stable ones to add new supports that have the "Libxxx" as the basis. |
I am surprised that no one has ever mentioned this in this project before.
The world is gradually switching to HTTP3 while HTTP2 is now dominating the web. Given the performance and the security and privacy features from HTTP3 protocol, it's becoming more and more important to have HTTP3 supported. Chrome, Firefox and Safari do not have full support of HTTP3 and I think that Ladybird supports HTTP3 will form a great distinction from those. This browser is a new project in development, which means that it won't be as challenging as the other established projects to change some underlying architecture in the code without so many technical debts as the barrier.
According to the README file:
It seems that the HTTP library lacks of the HTTP2 and HTTP3 support. According to SerenityOS/serenity#24672, Ladybrid can use any other third party library like https://github.com/cloudflare/quiche. Given that this is written in Rust, it's also a good example of trying to integrate Rust crate into this C++ code base as a library.
The text was updated successfully, but these errors were encountered: