Skip to content

Commit 88d256e

Browse files
committed
Add note about perf to Http3SampleApp
Follow up to #58094
1 parent fdd6d10 commit 88d256e

File tree

1 file changed

+2
-2
lines changed
  • src/Servers/Kestrel/samples/Http3SampleApp

1 file changed

+2
-2
lines changed

src/Servers/Kestrel/samples/Http3SampleApp/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ public static void Main(string[] args)
3737

3838
// On a machine that supports IPv6, msquic will resolve `localhost` to `::1`, which `IPAddress.Any` will not accept.
3939
// (To make it work, you'd need to use `IPv6Any`, as `ListenAnyIP` does.) As a result, a client built on msquic,
40-
// e.g. `HttpClient` on Windows, will not be able to make HTTP/3.0 requests to `localhost:5001`. HTTP/1.x and
41-
// HTTP/2.0 will still work.
40+
// e.g. `HttpClient`, will not be able to make HTTP/3.0 requests to `localhost:5001`. HTTP/1.x and HTTP/2.0 will
41+
// still work, but will be slower than necessary since they will try and fail the resolved IPv6 address first.
4242
// Example: https://github.com/dotnet/runtime/issues/108259
4343
// msquic: https://github.com/microsoft/msquic/issues/1181 (resolve both)
4444
// System.Net.Quic: https://github.com/dotnet/runtime/issues/82404 (improve consistency with sockets)

0 commit comments

Comments
 (0)