31 namespace OpenSim.Framework
35 public uint HttpListenerPort = ConfigSettings.DefaultRegionHttpPort;
36 public bool secureInventoryServer =
false;
38 public bool HttpUsesSSL =
false;
39 public string HttpSSLCN =
"";
40 public uint httpSSLPort = 9001;
43 public bool ssl_listener =
false;
44 public bool ssl_external =
false;
45 public uint https_port = 0;
46 public string cert_path = String.Empty;
47 public string cert_pass = String.Empty;
63 HttpUsesSSL = config.Configs[
"Network"].GetBoolean(
"http_listener_ssl",
false);
64 HttpSSLCN = config.Configs[
"Network"].GetString(
"http_listener_cn",
"localhost");
67 ssl_listener = config.Configs[
"Network"].GetBoolean(
"https_listener",
false);
68 ssl_external = config.Configs[
"Network"].GetBoolean(
"https_external",
false);
71 cert_path = config.Configs[
"Network"].GetString(
"cert_path",String.Empty);
72 cert_pass = config.Configs[
"Network"].GetString(
"cert_pass",String.Empty);
73 https_port = (uint)config.Configs[
"Network"].GetInt(
"https_port", 0);
const uint DefaultRegionHttpPort
NetworkServersInfo(uint defaultHomeLocX, uint defaultHomeLocY)
void loadFromConfiguration(IConfigSource config)