diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-12-27 17:52:41 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-12-27 17:52:41 -0500 |
| commit | 7bce2e04b618671faafc32a39978d0d8c87cba21 (patch) | |
| tree | ca2e3667d49a5aaee83864c8df3ac3da3fef3138 /MediaBrowser.Server.Startup.Common/INativeApp.cs | |
| parent | 0840bb9ba246d928161516e65a7b12e7ed08701b (diff) | |
sync updates
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/INativeApp.cs')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/INativeApp.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/MediaBrowser.Server.Startup.Common/INativeApp.cs b/MediaBrowser.Server.Startup.Common/INativeApp.cs index cf0135fa8..4abea57fb 100644 --- a/MediaBrowser.Server.Startup.Common/INativeApp.cs +++ b/MediaBrowser.Server.Startup.Common/INativeApp.cs @@ -1,5 +1,4 @@ using MediaBrowser.Common.Net; -using MediaBrowser.Controller.Net; using MediaBrowser.Model.Logging; using System.Collections.Generic; using System.Reflection; @@ -17,11 +16,10 @@ namespace MediaBrowser.Server.Startup.Common /// <summary> /// Authorizes the server. /// </summary> - /// <param name="httpServerPort">The HTTP server port.</param> - /// <param name="httpServerUrlPrefix">The HTTP server URL prefix.</param> /// <param name="udpPort">The UDP port.</param> + /// <param name="httpServerPort">The HTTP server port.</param> /// <param name="tempDirectory">The temporary directory.</param> - void AuthorizeServer(int httpServerPort, string httpServerUrlPrefix, int udpPort, string tempDirectory); + void AuthorizeServer(int udpPort, int httpServerPort, string tempDirectory); /// <summary> /// Gets the environment. |
