diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-10 21:12:43 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-10 21:12:43 -0500 |
| commit | 651f2a2aec283cab5b2420fda91fd6ac98a64fb0 (patch) | |
| tree | baec9bd3ece16e044a8cfaf525d4ec6234011db7 /MediaBrowser.Server.Startup.Common/INativeApp.cs | |
| parent | 5ff5df98678be11c11e93f80a44aeafe527999a1 (diff) | |
add https port to config object
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/INativeApp.cs')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/INativeApp.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Startup.Common/INativeApp.cs b/MediaBrowser.Server.Startup.Common/INativeApp.cs index 4abea57fb..2dbd844ba 100644 --- a/MediaBrowser.Server.Startup.Common/INativeApp.cs +++ b/MediaBrowser.Server.Startup.Common/INativeApp.cs @@ -18,8 +18,9 @@ namespace MediaBrowser.Server.Startup.Common /// </summary> /// <param name="udpPort">The UDP port.</param> /// <param name="httpServerPort">The HTTP server port.</param> + /// <param name="httpsServerPort">The HTTPS server port.</param> /// <param name="tempDirectory">The temporary directory.</param> - void AuthorizeServer(int udpPort, int httpServerPort, string tempDirectory); + void AuthorizeServer(int udpPort, int httpServerPort, int httpsServerPort, string tempDirectory); /// <summary> /// Gets the environment. |
