diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-10 20:58:20 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-10 20:58:20 -0500 |
| commit | 836e1fdc30f149d3548dc0b529d31ba96de28734 (patch) | |
| tree | 2f7df6e637eaa731774d9c86c1e4cad2933158ab /MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs | |
| parent | 01fc207b62151a858c0d7edb802a24690505bb95 (diff) | |
make additional classes portable
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs index 4218370ac..f0a9c5ca3 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs @@ -2,10 +2,8 @@ using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Net; using MediaBrowser.Model.Logging; -using MediaBrowser.Server.Implementations.HttpServer.SocketSharp; using ServiceStack; using ServiceStack.Host; -using ServiceStack.Web; using System; using System.Collections.Generic; using System.IO; @@ -158,14 +156,12 @@ namespace MediaBrowser.Server.Implementations.HttpServer return this; } - public static string HandlerFactoryPath; - /// <summary> /// Starts the Web Service /// </summary> private void StartListener() { - HandlerFactoryPath = GetHandlerPathIfAny(UrlPrefixes.First()); + WebSocketSharpRequest.HandlerFactoryPath = GetHandlerPathIfAny(UrlPrefixes.First()); _listener = GetListener(); |
