-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Add HTTP/3 APIs #1293
Labels
api-approved
API was approved in API review, it can be implemented
area-System.Net.Http
help wanted
[up-for-grabs] Good issue for external contributors
Milestone
Comments
Merged
Triage: We need to wait for QUIC spec to be finalized (its ALPN value). |
Spec is essentially done at this point, let's get these approved and implemented. |
namespace System.Net
{
public class partial HttpVersion
{
// Existing
// public static readonly Version Version10;
// public static readonly Version Version11;
// public static readonly Version Version20;
public static readonly Version Version30;
}
}
namespace System.Net.Security
{
public partial struct SslApplicationProtocol
{
// Existing
// public static readonly SslApplicationProtocol Http11;
// public static readonly SslApplicationProtocol Http2;
public static readonly SslApplicationProtocol Http3;
}
} |
Merged
Merged
i3arnon
added a commit
to i3arnon/runtime
that referenced
this issue
Aug 3, 2021
ManickaP
pushed a commit
that referenced
this issue
Aug 4, 2021
* Add SslApplicationProtocol.Http3 Fix #1293 * Add XML doc * Reuse in Http3Connection * Reuse in tests * HTTP/3 has no negotiation * Use SslApplicationProtocol.Http3.ToString() in tests * Ascending order in ref
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
api-approved
API was approved in API review, it can be implemented
area-System.Net.Http
help wanted
[up-for-grabs] Good issue for external contributors
This adds APIs needed for HTTP/3.
The text was updated successfully, but these errors were encountered: