aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2023-05-11 15:41:39 +0200
committerShadowghost <Ghost_of_Stone@web.de>2023-05-11 15:41:39 +0200
commitc042f20224f2032fd08f93c6cebb883ac9abd6f7 (patch)
tree4516f589a1516a8887e9e84f0e31b131470f8b82 /MediaBrowser.Common
parent6cc1203c1b423ee2765be7e33aad56be374c8314 (diff)
parente1a30a4aef32b503a836888bb85446902d0033d5 (diff)
Merge branch 'master' into network-rewrite
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);
}
}