aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/IHttpServer.cs
diff options
context:
space:
mode:
authorredSpoutnik <15638041+redSpoutnik@users.noreply.github.com>2019-03-16 17:54:57 +0100
committerGitHub <noreply@github.com>2019-03-16 17:54:57 +0100
commit480a6607e2badad925216e715841cce6300ef98e (patch)
tree01e09eb894f973f4519342dc6df502e3f1f2799f /MediaBrowser.Controller/Net/IHttpServer.cs
parent4a30fee40df69be381c2cdea01cd4dd29b97ad3c (diff)
parent3d1d27230de88cbf5c3ed3f882399175661c1c94 (diff)
Merge branch 'master' into subtitle-display-title
Diffstat (limited to 'MediaBrowser.Controller/Net/IHttpServer.cs')
-rw-r--r--MediaBrowser.Controller/Net/IHttpServer.cs24
1 files changed, 23 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Net/IHttpServer.cs b/MediaBrowser.Controller/Net/IHttpServer.cs
index f41303007..46933c046 100644
--- a/MediaBrowser.Controller/Net/IHttpServer.cs
+++ b/MediaBrowser.Controller/Net/IHttpServer.cs
@@ -1,7 +1,10 @@
using System;
using System.Collections.Generic;
+using System.Threading;
+using System.Threading.Tasks;
using MediaBrowser.Model.Events;
using MediaBrowser.Model.Services;
+using Microsoft.AspNetCore.Http;
namespace MediaBrowser.Controller.Net
{
@@ -29,11 +32,30 @@ namespace MediaBrowser.Controller.Net
/// <summary>
/// Inits this instance.
/// </summary>
- void Init(IEnumerable<IService> services, IEnumerable<IWebSocketListener> listener);
+ void Init(IEnumerable<IService> services, IEnumerable<IWebSocketListener> listener, IEnumerable<string> urlPrefixes);
/// <summary>
/// If set, all requests will respond with this message
/// </summary>
string GlobalResponse { get; set; }
+
+ /// <summary>
+ /// Sends the http context to the socket listener
+ /// </summary>
+ /// <param name="ctx"></param>
+ /// <returns></returns>
+ Task ProcessWebSocketRequest(HttpContext ctx);
+
+ /// <summary>
+ /// The HTTP request handler
+ /// </summary>
+ /// <param name="httpReq"></param>
+ /// <param name="urlString"></param>
+ /// <param name="host"></param>
+ /// <param name="localPath"></param>
+ /// <param name="cancellationToken"></param>
+ /// <returns></returns>
+ Task RequestHandler(IHttpRequest httpReq, string urlString, string host, string localPath,
+ CancellationToken cancellationToken);
}
}