-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Expose a global switch to disable IPV6 #55012
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
033aaa0
Remove reference to non-existent System.Net.NameResolution.Unit.Tests…
antonfirsov e6fc806
switch to disable IPv6
antonfirsov 62bbf44
IncludeRemoteExecutor added by mistake
antonfirsov 09ad1c8
Merge remote-tracking branch 'origin/main' into sockets/disable-ipv6
antonfirsov 82841b6
remove extra newline
antonfirsov d6b999a
review suggestion
antonfirsov a8f23cb
watch SocketProtocolSupportPal.OSSupportsIPv6 in NameResolutionPal.Unix
antonfirsov bc28c4a
Merge branch 'main' into sockets/disable-ipv6
alnikola File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
42 changes: 42 additions & 0 deletions
42
src/libraries/Common/src/System/Net/SocketProtocolSupportPal.cs
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| using System.Net.Sockets; | ||
|
|
||
| namespace System.Net | ||
| { | ||
| internal static partial class SocketProtocolSupportPal | ||
| { | ||
| private const string DisableIPv6AppCtxSwitch = "System.Net.DisableIPv6"; | ||
| private const string DisableIPv6EnvironmentVariable = "DOTNET_SYSTEM_NET_DISABLEIPV6"; | ||
|
|
||
| public static bool OSSupportsIPv6 { get; } = IsSupported(AddressFamily.InterNetworkV6) && !IsIPv6Disabled(); | ||
| public static bool OSSupportsIPv4 { get; } = IsSupported(AddressFamily.InterNetwork); | ||
| public static bool OSSupportsUnixDomainSockets { get; } = IsSupported(AddressFamily.Unix); | ||
|
|
||
| private static bool IsIPv6Disabled() | ||
| { | ||
| bool value; | ||
|
|
||
| // First check for the AppContext switch, giving it priority over the environment variable. | ||
| if (AppContext.TryGetSwitch(DisableIPv6AppCtxSwitch, out value)) | ||
| { | ||
| return value; | ||
| } | ||
|
|
||
| // AppContext switch wasn't used. Check the environment variable. | ||
| string? envVar = Environment.GetEnvironmentVariable(DisableIPv6EnvironmentVariable); | ||
|
|
||
| if (bool.TryParse(envVar, out value)) | ||
| { | ||
| return value; | ||
| } | ||
| else if (uint.TryParse(envVar, out uint intVal)) | ||
| { | ||
| return intVal != 0; | ||
| } | ||
|
|
||
| return false; | ||
antonfirsov marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
| } | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.