2016-10-26 06:01:42 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
|
|
|
|
using MediaBrowser.Controller;
|
2015-06-13 04:14:48 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-12-07 15:52:38 +00:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2016-10-23 19:14:57 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-12-09 02:24:48 +00:00
|
|
|
|
using ServiceStack.Logging;
|
2013-02-24 21:53:54 +00:00
|
|
|
|
|
2013-03-07 05:34:00 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.HttpServer
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ServerFactory
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class ServerFactory
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates the server.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>IHttpServer.</returns>
|
2016-10-26 06:01:42 +00:00
|
|
|
|
public static IHttpServer CreateServer(IServerApplicationHost applicationHost,
|
2015-06-13 04:14:48 +00:00
|
|
|
|
ILogManager logManager,
|
|
|
|
|
IServerConfigurationManager config,
|
2016-10-26 06:01:42 +00:00
|
|
|
|
INetworkManager networkmanager,
|
2016-10-06 18:55:01 +00:00
|
|
|
|
IMemoryStreamProvider streamProvider,
|
2014-10-06 23:58:46 +00:00
|
|
|
|
string serverName,
|
2015-01-18 19:53:34 +00:00
|
|
|
|
string defaultRedirectpath)
|
2013-02-24 21:53:54 +00:00
|
|
|
|
{
|
2013-12-09 02:24:48 +00:00
|
|
|
|
LogManager.LogFactory = new ServerLogFactory(logManager);
|
2014-10-06 23:58:46 +00:00
|
|
|
|
|
2016-10-26 06:01:42 +00:00
|
|
|
|
return new HttpListenerHost(applicationHost, logManager, config, serverName, defaultRedirectpath, networkmanager, streamProvider);
|
2013-02-24 21:53:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|