-
Notifications
You must be signed in to change notification settings - Fork 10k
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
feat: analyzer and codeFix for kestrel setup ListenOptions.Listen(IPAddress.Any)
usage
#58872
Merged
DeagleGross
merged 6 commits into
dotnet:main
from
DeagleGross:dmkorolev/analyzers/listenoptions
Nov 13, 2024
Merged
feat: analyzer and codeFix for kestrel setup ListenOptions.Listen(IPAddress.Any)
usage
#58872
DeagleGross
merged 6 commits into
dotnet:main
from
DeagleGross:dmkorolev/analyzers/listenoptions
Nov 13, 2024
+334
−0
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DeagleGross
added
the
analyzer
Indicates an issue which is related to analyzer experience
label
Nov 11, 2024
dotnet-issue-labeler
bot
added
the
area-infrastructure
Includes: MSBuild projects/targets, build scripts, CI, Installers and shared framework
label
Nov 11, 2024
src/Framework/AspNetCoreAnalyzers/src/Analyzers/DiagnosticDescriptors.cs
Outdated
Show resolved
Hide resolved
@dotnet-policy-service agree company="Microsoft" |
halter73
reviewed
Nov 11, 2024
src/Framework/AspNetCoreAnalyzers/src/Analyzers/DiagnosticDescriptors.cs
Outdated
Show resolved
Hide resolved
src/Framework/AspNetCoreAnalyzers/src/Analyzers/Kestrel/ListenOnIPv6AnyAnalyzer.cs
Show resolved
Hide resolved
src/Framework/AspNetCoreAnalyzers/src/CodeFixes/Kestrel/ListenOnIPv6AnyFixer.cs
Outdated
Show resolved
Hide resolved
DeagleGross
requested review from
captainsafia and
mkArtakMSFT
as code owners
November 12, 2024 11:59
3 tasks
halter73
approved these changes
Nov 12, 2024
halter73
reviewed
Nov 12, 2024
halter73
reviewed
Nov 12, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
analyzer
Indicates an issue which is related to analyzer experience
area-infrastructure
Includes: MSBuild projects/targets, build scripts, CI, Installers and shared framework
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On a machine that supports IPv6, listening to
Any
, rather thanIPv6Any
will either not work or be slower than necessary. For HTTP/1.x and 2/0, a name likelocalhost
will resolve to[::1]
, which won't be accepted by the server, forcing a retry with127.0.0.1
(i.e. failed attempt before each connection).Implemented in a way, as specified by @amcasey:
PR adds the analyzer, which catches
options.Listen(IPAddress.Any, ...)
usage, and a code fix, which explicitly changes the argument toIPAddress.IPv6Any
.Docs PR
Fixes #58172