diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-25 16:07:19 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-25 16:07:19 -0500 |
| commit | ac8ffb8db0a41607cba9f8d3576a9f6643ac86bb (patch) | |
| tree | 3d23169e09ac5376e853eb12c4aca1c426f58e61 /MediaBrowser.ServerApplication/ApplicationHost.cs | |
| parent | 51954a283f1f0a23cfdb378300c1e09d6c57312a (diff) | |
Added IAppHost.Name
Diffstat (limited to 'MediaBrowser.ServerApplication/ApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/ApplicationHost.cs | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/ApplicationHost.cs b/MediaBrowser.ServerApplication/ApplicationHost.cs index 045c9f18c..b78a0f36d 100644 --- a/MediaBrowser.ServerApplication/ApplicationHost.cs +++ b/MediaBrowser.ServerApplication/ApplicationHost.cs @@ -186,6 +186,18 @@ namespace MediaBrowser.ServerApplication } /// <summary> + /// Gets the name. + /// </summary> + /// <value>The name.</value> + public override string Name + { + get + { + return "Media Browser Server"; + } + } + + /// <summary> /// Gets a value indicating whether this instance can self restart. /// </summary> /// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value> @@ -732,7 +744,7 @@ namespace MediaBrowser.ServerApplication { ServerAuthorization.AuthorizeServer( ServerConfigurationManager.Configuration.HttpServerPortNumber, - HttpServerUrlPrefixes.First(), + HttpServerUrlPrefixes.First(), ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber, UdpServerEntryPoint.PortNumber, ConfigurationManager.CommonApplicationPaths.TempDirectory); |
