aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-03-03 08:29:23 +0100
committerClaus Vium <clausvium@gmail.com>2019-03-03 08:29:23 +0100
commite823c11b46ccf0473aa72cb52cd5a3a9f977e61b (patch)
treec8b053828dece3d44defe2256d33039bd7fd22ed /Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
parent6bdb5debd2492b71d11f9628889b8c29b6321a77 (diff)
Add certificate to https and minor cleanup
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/HttpListenerHost.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index dbfb5e243..263fcdbe9 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -855,16 +855,5 @@ namespace Emby.Server.Implementations.HttpServer
{
Dispose(true);
}
-
- public void StartServer(string[] urlPrefixes, IHttpListener httpListener)
- {
- UrlPrefixes = urlPrefixes;
-
- _listener = httpListener;
-
- _listener.WebSocketConnected = OnWebSocketConnected;
- _listener.ErrorHandler = ErrorHandler;
- _listener.RequestHandler = RequestHandler;
- }
}
}