Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Newton-King <james@newtonking.com>2022-06-19 11:25:10 +0300
committerJames Newton-King <james@newtonking.com>2022-06-19 11:25:10 +0300
commitffde4f5e7b58438e2dc32f811d021dcac35158af (patch)
tree910e3720c0b4ff2ae6108299c358106b391dc235
parenta91ec31ecb53a2263cebe4446639c96c211bf8cc (diff)
Remove non-final HTTP/3 ALPNjamesnk/http3-alpn
-rw-r--r--src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs b/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs
index 1423b77ec1..a6aba02287 100644
--- a/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs
+++ b/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs
@@ -513,7 +513,7 @@ internal sealed class HttpsConnectionMiddleware
var sslServerAuthenticationOptions = new SslServerAuthenticationOptions
{
ServerCertificate = httpsOptions.ServerCertificate,
- ApplicationProtocols = new List<SslApplicationProtocol>() { SslApplicationProtocol.Http3, new SslApplicationProtocol("h3-29") },
+ ApplicationProtocols = new List<SslApplicationProtocol>() { SslApplicationProtocol.Http3 },
CertificateRevocationCheckMode = httpsOptions.CheckCertificateRevocation ? X509RevocationMode.Online : X509RevocationMode.NoCheck,
};