-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Refactor quic setup #34877
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
Refactor quic setup #34877
Changes from all commits
17e7dee
d615f09
1a03a2a
5ed8b1b
e8d0324
50247f8
68ba2bc
61a7441
c3bb490
8c85bd2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ public static class WebHostBuilderKestrelExtensions | |
/// </returns> | ||
public static IWebHostBuilder UseKestrel(this IWebHostBuilder hostBuilder) | ||
{ | ||
hostBuilder.UseQuic(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So anyone using Kestrel will be using Quic, even if not using Http3? Does it no-op for Http1/2? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right, this adds the services but they're only used if you enable http3. |
||
return hostBuilder.ConfigureServices(services => | ||
{ | ||
// Don't override an already-configured transport | ||
|
Uh oh!
There was an error while loading. Please reload this page.