[PR #4127] [CLOSED] Networking 3 (Cumulative PR) #9894

Closed
opened 2026-02-07 06:10:22 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/4127
Author: @BaronGreenback
Created: 9/12/2020
Status: Closed

Base: masterHead: NetworkPR3


📝 Commits (10+)

📊 Changes

40 files changed (+2810 additions, -1146 deletions)

View changed files

📝 Emby.Dlna/Main/DlnaEntryPoint.cs (+27 -17)
📝 Emby.Dlna/PlayTo/PlayToManager.cs (+1 -9)
📝 Emby.Server.Implementations/ApplicationHost.cs (+67 -175)
📝 Emby.Server.Implementations/Emby.Server.Implementations.csproj (+1 -1)
📝 Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs (+1 -1)
📝 Emby.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunUdpStream.cs (+1 -1)
Emby.Server.Implementations/Networking/NetworkManager.cs (+0 -556)
📝 Emby.Server.Implementations/Udp/UdpServer.cs (+1 -1)
📝 Jellyfin.Api/Auth/BaseAuthorizationHandler.cs (+1 -1)
📝 Jellyfin.Api/Auth/DefaultAuthorizationPolicy/DefaultAuthorizationHandler.cs (+1 -1)
📝 Jellyfin.Api/Auth/DownloadPolicy/DownloadHandler.cs (+1 -1)
📝 Jellyfin.Api/Auth/FirstTimeOrIgnoreParentalControlSetupPolicy/FirstTimeOrIgnoreParentalControlSetupHandler.cs (+1 -1)
📝 Jellyfin.Api/Auth/IgnoreParentalControlPolicy/IgnoreParentalControlHandler.cs (+1 -1)
📝 Jellyfin.Api/Auth/LocalAccessOrRequiresElevationPolicy/LocalAccessOrRequiresElevationHandler.cs (+1 -1)
📝 Jellyfin.Api/Auth/LocalAccessPolicy/LocalAccessHandler.cs (+1 -1)
📝 Jellyfin.Api/Controllers/SystemController.cs (+6 -5)
📝 Jellyfin.Api/Controllers/UserController.cs (+1 -1)
📝 Jellyfin.Api/Helpers/DynamicHlsHelper.cs (+1 -1)
📝 Jellyfin.Api/Helpers/MediaInfoHelper.cs (+1 -1)
Jellyfin.Networking/Jellyfin.Networking.csproj (+39 -0)

...and 20 more files

📄 Description

UDP classes. (2 files)

Files included from Network 1

https://github.com/jellyfin/jellyfin/pull/4124/files

INetworkManager.cs
NetworkManager.cs
ServerConfiguration.cs
PathSubstitution.cs
Jellyfin.Networking.csproj
MediaBrowser.sln


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/4127 **Author:** [@BaronGreenback](https://github.com/BaronGreenback) **Created:** 9/12/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `NetworkPR3` --- ### 📝 Commits (10+) - [`9ef79d1`](https://github.com/jellyfin/jellyfin/commit/9ef79d190b2490a03c566bfaaf963fbba7d124a9) Large number of files - [`288d894`](https://github.com/jellyfin/jellyfin/commit/288d89493e76b8881c719fe549859b2c0b5f7e29) Fixed testing units. - [`499a300`](https://github.com/jellyfin/jellyfin/commit/499a30069a107d4dcb9ea8d00da5c76ca2af967c) UDP Server - [`b44455a`](https://github.com/jellyfin/jellyfin/commit/b44455ad0d6e78b5baed535c06a7f7d49116d1ee) Update based on PR1 changes. - [`38b8110`](https://github.com/jellyfin/jellyfin/commit/38b8110a3ec33267bb2b9e0b75ed0e2a704f41ca) Removing blank lines. - [`c1bfba9`](https://github.com/jellyfin/jellyfin/commit/c1bfba90813b6780d43f82d4056496f5c776a186) Nullable added - [`b04aed2`](https://github.com/jellyfin/jellyfin/commit/b04aed2f5842f6dbdc07c5d8d44f04bb69e0896d) Merge remote-tracking branch 'upstream/master' into NetworkPR2 - [`44ef03e`](https://github.com/jellyfin/jellyfin/commit/44ef03e7f35040199d164f04782cac569174172d) Updated from PR2 - [`3be1e7b`](https://github.com/jellyfin/jellyfin/commit/3be1e7b9ca2779107b16611146373ecb2741c8c9) moved INetworkManager.cs - [`f122511`](https://github.com/jellyfin/jellyfin/commit/f122511695e01d56ae4be64c0a05fa78d00293bb) latest version. ### 📊 Changes **40 files changed** (+2810 additions, -1146 deletions) <details> <summary>View changed files</summary> 📝 `Emby.Dlna/Main/DlnaEntryPoint.cs` (+27 -17) 📝 `Emby.Dlna/PlayTo/PlayToManager.cs` (+1 -9) 📝 `Emby.Server.Implementations/ApplicationHost.cs` (+67 -175) 📝 `Emby.Server.Implementations/Emby.Server.Implementations.csproj` (+1 -1) 📝 `Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs` (+1 -1) 📝 `Emby.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunUdpStream.cs` (+1 -1) ➖ `Emby.Server.Implementations/Networking/NetworkManager.cs` (+0 -556) 📝 `Emby.Server.Implementations/Udp/UdpServer.cs` (+1 -1) 📝 `Jellyfin.Api/Auth/BaseAuthorizationHandler.cs` (+1 -1) 📝 `Jellyfin.Api/Auth/DefaultAuthorizationPolicy/DefaultAuthorizationHandler.cs` (+1 -1) 📝 `Jellyfin.Api/Auth/DownloadPolicy/DownloadHandler.cs` (+1 -1) 📝 `Jellyfin.Api/Auth/FirstTimeOrIgnoreParentalControlSetupPolicy/FirstTimeOrIgnoreParentalControlSetupHandler.cs` (+1 -1) 📝 `Jellyfin.Api/Auth/IgnoreParentalControlPolicy/IgnoreParentalControlHandler.cs` (+1 -1) 📝 `Jellyfin.Api/Auth/LocalAccessOrRequiresElevationPolicy/LocalAccessOrRequiresElevationHandler.cs` (+1 -1) 📝 `Jellyfin.Api/Auth/LocalAccessPolicy/LocalAccessHandler.cs` (+1 -1) 📝 `Jellyfin.Api/Controllers/SystemController.cs` (+6 -5) 📝 `Jellyfin.Api/Controllers/UserController.cs` (+1 -1) 📝 `Jellyfin.Api/Helpers/DynamicHlsHelper.cs` (+1 -1) 📝 `Jellyfin.Api/Helpers/MediaInfoHelper.cs` (+1 -1) ➕ `Jellyfin.Networking/Jellyfin.Networking.csproj` (+39 -0) _...and 20 more files_ </details> ### 📄 Description UDP classes. (2 files) Files included from Network 1 ==== https://github.com/jellyfin/jellyfin/pull/4124/files INetworkManager.cs NetworkManager.cs ServerConfiguration.cs PathSubstitution.cs Jellyfin.Networking.csproj MediaBrowser.sln --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 06:10:22 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#9894