add https port to config object

This commit is contained in:
Luke Pulverenti
2015-01-10 21:12:43 -05:00
parent 5ff5df9867
commit 651f2a2aec
7 changed files with 22 additions and 6 deletions

View File

@@ -21,9 +21,9 @@ namespace MediaBrowser.ServerApplication.Native
return list;
}
public void AuthorizeServer(int httpServerPort, int udpPort, string tempDirectory)
public void AuthorizeServer(int udpPort, int httpServerPort, int httpsPort, string tempDirectory)
{
ServerAuthorization.AuthorizeServer(udpPort, httpServerPort, tempDirectory);
ServerAuthorization.AuthorizeServer(udpPort, httpServerPort, httpsPort, tempDirectory);
}
public NativeEnvironment Environment