mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #4124] [MERGED] Networking: 1 - Network Manager #9893
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/jellyfin/jellyfin/pull/4124
Author: @BaronGreenback
Created: 9/12/2020
Status: ✅ Merged
Merged: 11/21/2020
Merged by: @Bond-009
Base:
master← Head:NetworkPR📝 Commits (10+)
6edc746NetworkManager91da8cdConfig file with additional options.4abf6cfUpdate Jellyfin.Networking/Manager/INetworkManager.csb64cbc6Update Jellyfin.Networking/Manager/INetworkManager.cs71d3f47Update MediaBrowser.Model/Configuration/ServerConfiguration.cs8f80858Update MediaBrowser.Model/Configuration/ServerConfiguration.csc04e5dcUpdate MediaBrowser.Model/Configuration/ServerConfiguration.cs43ccef6Update Jellyfin.Networking/Manager/NetworkManager.cs5120bd2Split function.6e87a1cMerge branch 'NetworkPR' of https://github.com/BaronGreenback/jellyfin into NetworkPR📊 Changes
15 files changed (+3532 additions, -210 deletions)
View changed files
📝
Emby.Server.Implementations/Networking/NetworkManager.cs(+20 -10)📝
Jellyfin.Api/Controllers/StartupController.cs(+3 -3)➕
Jellyfin.Networking/Configuration/NetworkConfiguration.cs(+221 -0)➕
Jellyfin.Networking/Configuration/NetworkConfigurationExtensions.cs(+21 -0)➕
Jellyfin.Networking/Configuration/NetworkConfigurationFactory.cs(+27 -0)➕
Jellyfin.Networking/Jellyfin.Networking.csproj(+30 -0)➕
Jellyfin.Networking/Manager/INetworkManager.cs(+234 -0)➕
Jellyfin.Networking/Manager/NetworkManager.cs(+1319 -0)➕
MediaBrowser.Common/Net/IPHost.cs(+445 -0)➕
MediaBrowser.Common/Net/IPNetAddress.cs(+277 -0)➕
MediaBrowser.Common/Net/IPObject.cs(+406 -0)➕
MediaBrowser.Common/Net/NetworkExtensions.cs(+262 -0)➕
MediaBrowser.Model/Configuration/PathSubstitution.cs(+20 -0)📝
MediaBrowser.Model/Configuration/ServerConfiguration.cs(+227 -183)📝
MediaBrowser.sln(+20 -14)📄 Description
New PR's - same code. Been working on the simplification of the order of installation.
INetworkManager.cs - network manager interface.
NetworkManager.cs - replacement network manager object.
ServerConfiguration.cs has the initial configs on the lines of the setting to aid reading. It has the additional settings.
PathSubstitution.cs - is extracted from ServerConfiguration.cs and is unaltered.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.