Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Servers/Kestrel/samples/Http3SampleApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public static void Main(string[] args)

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