aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Networking/Configuration/NetworkConfiguration.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2022-07-19 21:28:04 +0200
committerShadowghost <Ghost_of_Stone@web.de>2022-07-19 21:28:04 +0200
commit066db8ac7fcece0ab3420b6b6c03e420d22c7306 (patch)
treef23311480feff1053dc990930303ed10fcd01944 /Jellyfin.Networking/Configuration/NetworkConfiguration.cs
parentc2902dd1081acd96cf34682ec8a4812ab6146044 (diff)
Migrate NetworkManager and Tests to native .NET IP objects
Diffstat (limited to 'Jellyfin.Networking/Configuration/NetworkConfiguration.cs')
-rw-r--r--Jellyfin.Networking/Configuration/NetworkConfiguration.cs10
1 files changed, 2 insertions, 8 deletions
diff --git a/Jellyfin.Networking/Configuration/NetworkConfiguration.cs b/Jellyfin.Networking/Configuration/NetworkConfiguration.cs
index 61db223d9..0ac55c986 100644
--- a/Jellyfin.Networking/Configuration/NetworkConfiguration.cs
+++ b/Jellyfin.Networking/Configuration/NetworkConfiguration.cs
@@ -113,12 +113,12 @@ namespace Jellyfin.Networking.Configuration
public string UDPPortRange { get; set; } = string.Empty;
/// <summary>
- /// Gets or sets a value indicating whether gets or sets IPV6 capability.
+ /// Gets or sets a value indicating whether IPv6 is enabled or not.
/// </summary>
public bool EnableIPV6 { get; set; }
/// <summary>
- /// Gets or sets a value indicating whether gets or sets IPV4 capability.
+ /// Gets or sets a value indicating whether IPv6 is enabled or not.
/// </summary>
public bool EnableIPV4 { get; set; } = true;
@@ -166,12 +166,6 @@ namespace Jellyfin.Networking.Configuration
public bool EnableMultiSocketBinding { get; } = true;
/// <summary>
- /// Gets or sets a value indicating whether all IPv6 interfaces should be treated as on the internal network.
- /// Depending on the address range implemented ULA ranges might not be used.
- /// </summary>
- public bool TrustAllIP6Interfaces { get; set; }
-
- /// <summary>
/// Gets or sets the ports that HDHomerun uses.
/// </summary>
public string HDHomerunPortRange { get; set; } = string.Empty;