diff options
| author | Patrick Barron <barronpm@gmail.com> | 2023-11-30 11:36:16 -0500 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2023-11-30 11:57:09 -0500 |
| commit | f1ca1dd7cc14e59938a73a34c2561856d706312b (patch) | |
| tree | d590cb1272e6cb2e3cf0f52ca8d64c7ac362adf5 | |
| parent | 57a22673049e34f2c314cc20df96ab91da0de314 (diff) | |
Move UdpServerEntryPoint to Jellyfin.Networking
| -rw-r--r-- | src/Jellyfin.Networking/Udp/UdpServer.cs (renamed from Emby.Server.Implementations/Udp/UdpServer.cs) | 2 | ||||
| -rw-r--r-- | src/Jellyfin.Networking/UdpServerEntryPoint.cs (renamed from Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs) | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Udp/UdpServer.cs b/src/Jellyfin.Networking/Udp/UdpServer.cs index 2d806c146..978eb7853 100644 --- a/Emby.Server.Implementations/Udp/UdpServer.cs +++ b/src/Jellyfin.Networking/Udp/UdpServer.cs @@ -11,7 +11,7 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; using static MediaBrowser.Controller.Extensions.ConfigurationExtensions; -namespace Emby.Server.Implementations.Udp +namespace Jellyfin.Networking.Udp { /// <summary> /// Provides a Udp Server. diff --git a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs b/src/Jellyfin.Networking/UdpServerEntryPoint.cs index 2af267785..ced5a5ce1 100644 --- a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs +++ b/src/Jellyfin.Networking/UdpServerEntryPoint.cs @@ -5,8 +5,7 @@ using System.Net; using System.Net.Sockets; using System.Threading; using System.Threading.Tasks; -using Emby.Server.Implementations.Udp; -using MediaBrowser.Common.Configuration; +using Jellyfin.Networking.Udp; using MediaBrowser.Common.Net; using MediaBrowser.Controller; using MediaBrowser.Controller.Plugins; @@ -14,7 +13,7 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; using IConfigurationManager = MediaBrowser.Common.Configuration.IConfigurationManager; -namespace Emby.Server.Implementations.EntryPoints +namespace Jellyfin.Networking { /// <summary> /// Class responsible for registering all UDP broadcast endpoints and their handlers. |
