diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2022-07-20 14:29:30 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2022-07-20 14:29:30 +0200 |
| commit | 2281b8c997dff0fa148bf0f193b37664420aca3e (patch) | |
| tree | 1f650a3bfe9ed13c11831e1226d8f36bd042a5f3 /Jellyfin.Networking/Configuration | |
| parent | a492082f4e015d6d38368c4ac05d39d236387214 (diff) | |
Move away from using Collection, simplify code, add proper ordering
Diffstat (limited to 'Jellyfin.Networking/Configuration')
| -rw-r--r-- | Jellyfin.Networking/Configuration/NetworkConfiguration.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Networking/Configuration/NetworkConfiguration.cs b/Jellyfin.Networking/Configuration/NetworkConfiguration.cs index 0ac55c986e..be8dc738d9 100644 --- a/Jellyfin.Networking/Configuration/NetworkConfiguration.cs +++ b/Jellyfin.Networking/Configuration/NetworkConfiguration.cs @@ -151,9 +151,9 @@ namespace Jellyfin.Networking.Configuration public bool IgnoreVirtualInterfaces { get; set; } = true; /// <summary> - /// Gets or sets a value indicating the interfaces that should be ignored. The list can be comma separated. <seealso cref="IgnoreVirtualInterfaces"/>. + /// Gets or sets a value indicating the interface name prefixes that should be ignored. The list can be comma separated and values are case-insensitive. <seealso cref="IgnoreVirtualInterfaces"/>. /// </summary> - public string VirtualInterfaceNames { get; set; } = "vEthernet*"; + public string VirtualInterfaceNames { get; set; } = "veth"; /// <summary> /// Gets or sets the time (in seconds) between the pings of SSDP gateway monitor. |
