aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2023-05-11 07:12:34 -0600
committerGitHub <noreply@github.com>2023-05-11 07:12:34 -0600
commite1a30a4aef32b503a836888bb85446902d0033d5 (patch)
tree5caadd40898c17498635f869917b6a17970102d3 /MediaBrowser.Common
parent11d7c00de9731b3b875ea5bb3afa02e1dfd7b950 (diff)
parent93fe47c7cb7a3aa5eb8504edc2fd4f27c4824993 (diff)
Merge pull request #8598 from Neuheit/ipv4fallback
Diffstat (limited to 'MediaBrowser.Common')
-rw-r--r--MediaBrowser.Common/Net/NamedClient.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/MediaBrowser.Common/Net/NamedClient.cs b/MediaBrowser.Common/Net/NamedClient.cs
index a6cacd4f1..9c5544b0f 100644
--- a/MediaBrowser.Common/Net/NamedClient.cs
+++ b/MediaBrowser.Common/Net/NamedClient.cs
@@ -1,4 +1,4 @@
-namespace MediaBrowser.Common.Net
+namespace MediaBrowser.Common.Net
{
/// <summary>
/// Registered http client names.
@@ -6,7 +6,7 @@
public static class NamedClient
{
/// <summary>
- /// Gets the value for the default named http client.
+ /// Gets the value for the default named http client which implements happy eyeballs.
/// </summary>
public const string Default = nameof(Default);
@@ -19,5 +19,10 @@
/// Gets the value for the DLNA named http client.
/// </summary>
public const string Dlna = nameof(Dlna);
+
+ /// <summary>
+ /// Non happy eyeballs implementation.
+ /// </summary>
+ public const string DirectIp = nameof(DirectIp);
}
}