minor: be consistent about reporting errors out of HttpServerBase

ghosts
Justin Clark-Casey (justincc) 2014-10-14 00:35:15 +01:00
parent 2935e79ca3
commit 275613ad83
1 changed files with 13 additions and 11 deletions

View File

@ -93,13 +93,14 @@ namespace OpenSim.Server.Base
string cert_path = networkConfig.GetString("cert_path",String.Empty);
if (cert_path == String.Empty)
{
System.Console.WriteLine("Path to X509 certificate is missing, server can't start.");
System.Console.WriteLine("ERROR: Path to X509 certificate is missing, server can't start.");
Environment.Exit(1);
}
string cert_pass = networkConfig.GetString("cert_pass",String.Empty);
if (cert_pass == String.Empty)
{
System.Console.WriteLine("Password for X509 certificate is missing, server can't start.");
System.Console.WriteLine("ERROR: Password for X509 certificate is missing, server can't start.");
Environment.Exit(1);
}
@ -110,20 +111,21 @@ namespace OpenSim.Server.Base
MainServer.Instance = httpServer;
// If https_listener = true, then add an ssl listener on the https_port...
if ( ssl_listener == true ) {
if (ssl_listener == true)
{
uint https_port = (uint)networkConfig.GetInt("https_port", 0);
string cert_path = networkConfig.GetString("cert_path",String.Empty);
if (cert_path == String.Empty)
{
System.Console.WriteLine("Path to X509 certificate is missing, server can't start.");
System.Console.WriteLine("ERROR: Path to X509 certificate is missing, server can't start.");
Environment.Exit(1);
}
string cert_pass = networkConfig.GetString("cert_pass",String.Empty);
if (cert_pass == String.Empty)
{
System.Console.WriteLine("Password for X509 certificate is missing, server can't start.");
System.Console.WriteLine("ERROR: Password for X509 certificate is missing, server can't start.");
Environment.Exit(1);
}