diff options
author | Melanie Thielker | 2016-12-13 19:47:26 +0000 |
---|---|---|
committer | Melanie Thielker | 2016-12-13 19:47:26 +0000 |
commit | 69776aa70ce662ccd0ad3d9f2ecefb86671bbcb3 (patch) | |
tree | 1db4aedc7bda9ce15f5be133c3514517ca0f312b /OpenSim/Framework | |
parent | Make sure sims on Linux can be restarted without waiting on a 2 mintue socket... (diff) | |
download | opensim-SC-69776aa70ce662ccd0ad3d9f2ecefb86671bbcb3.zip opensim-SC-69776aa70ce662ccd0ad3d9f2ecefb86671bbcb3.tar.gz opensim-SC-69776aa70ce662ccd0ad3d9f2ecefb86671bbcb3.tar.bz2 opensim-SC-69776aa70ce662ccd0ad3d9f2ecefb86671bbcb3.tar.xz |
Remove the AllowAlternatePorts option. It wasn't implemented anyway.
Instead, handle the port being 0 as "any port" and assign a random
port for regions in that case.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 34 |
1 files changed, 2 insertions, 32 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index adffe13..8f754a5 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs | |||
@@ -138,8 +138,6 @@ namespace OpenSim.Framework | |||
138 | protected uint m_httpPort; | 138 | protected uint m_httpPort; |
139 | protected string m_serverURI; | 139 | protected string m_serverURI; |
140 | protected string m_regionName = String.Empty; | 140 | protected string m_regionName = String.Empty; |
141 | protected bool Allow_Alternate_Ports; | ||
142 | public bool m_allow_alternate_ports; | ||
143 | protected string m_externalHostName; | 141 | protected string m_externalHostName; |
144 | protected IPEndPoint m_internalEndPoint; | 142 | protected IPEndPoint m_internalEndPoint; |
145 | protected uint m_remotingPort; | 143 | protected uint m_remotingPort; |
@@ -673,20 +671,6 @@ namespace OpenSim.Framework | |||
673 | } | 671 | } |
674 | m_internalEndPoint = new IPEndPoint(address, port); | 672 | m_internalEndPoint = new IPEndPoint(address, port); |
675 | 673 | ||
676 | // AllowAlternatePorts | ||
677 | // | ||
678 | allKeys.Remove("AllowAlternatePorts"); | ||
679 | if (config.Contains("AllowAlternatePorts")) | ||
680 | { | ||
681 | m_allow_alternate_ports = config.GetBoolean("AllowAlternatePorts", true); | ||
682 | } | ||
683 | else | ||
684 | { | ||
685 | m_allow_alternate_ports = Convert.ToBoolean(MainConsole.Instance.CmdPrompt("Allow alternate ports", "False")); | ||
686 | |||
687 | config.Set("AllowAlternatePorts", m_allow_alternate_ports.ToString()); | ||
688 | } | ||
689 | |||
690 | // ResolveAddress | 674 | // ResolveAddress |
691 | // | 675 | // |
692 | allKeys.Remove("ResolveAddress"); | 676 | allKeys.Remove("ResolveAddress"); |
@@ -925,8 +909,6 @@ namespace OpenSim.Framework | |||
925 | config.Set("InternalAddress", m_internalEndPoint.Address.ToString()); | 909 | config.Set("InternalAddress", m_internalEndPoint.Address.ToString()); |
926 | config.Set("InternalPort", m_internalEndPoint.Port); | 910 | config.Set("InternalPort", m_internalEndPoint.Port); |
927 | 911 | ||
928 | config.Set("AllowAlternatePorts", m_allow_alternate_ports.ToString()); | ||
929 | |||
930 | config.Set("ExternalHostName", m_externalHostName); | 912 | config.Set("ExternalHostName", m_externalHostName); |
931 | 913 | ||
932 | if (m_nonphysPrimMin > 0) | 914 | if (m_nonphysPrimMin > 0) |
@@ -1019,10 +1001,6 @@ namespace OpenSim.Framework | |||
1019 | configMember.addConfigurationOption("internal_ip_port", ConfigurationOption.ConfigurationTypes.TYPE_INT32, | 1001 | configMember.addConfigurationOption("internal_ip_port", ConfigurationOption.ConfigurationTypes.TYPE_INT32, |
1020 | "Internal IP Port for incoming UDP client connections", | 1002 | "Internal IP Port for incoming UDP client connections", |
1021 | m_internalEndPoint.Port.ToString(), true); | 1003 | m_internalEndPoint.Port.ToString(), true); |
1022 | configMember.addConfigurationOption("allow_alternate_ports", | ||
1023 | ConfigurationOption.ConfigurationTypes.TYPE_BOOLEAN, | ||
1024 | "Allow sim to find alternate UDP ports when ports are in use?", | ||
1025 | m_allow_alternate_ports.ToString(), true); | ||
1026 | configMember.addConfigurationOption("external_host_name", | 1004 | configMember.addConfigurationOption("external_host_name", |
1027 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, | 1005 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, |
1028 | "External Host Name", m_externalHostName, true); | 1006 | "External Host Name", m_externalHostName, true); |
@@ -1092,9 +1070,6 @@ namespace OpenSim.Framework | |||
1092 | configMember.addConfigurationOption("internal_ip_port", ConfigurationOption.ConfigurationTypes.TYPE_INT32, | 1070 | configMember.addConfigurationOption("internal_ip_port", ConfigurationOption.ConfigurationTypes.TYPE_INT32, |
1093 | "Internal IP Port for incoming UDP client connections", | 1071 | "Internal IP Port for incoming UDP client connections", |
1094 | ConfigSettings.DefaultRegionHttpPort.ToString(), false); | 1072 | ConfigSettings.DefaultRegionHttpPort.ToString(), false); |
1095 | configMember.addConfigurationOption("allow_alternate_ports", ConfigurationOption.ConfigurationTypes.TYPE_BOOLEAN, | ||
1096 | "Allow sim to find alternate UDP ports when ports are in use?", | ||
1097 | "false", true); | ||
1098 | configMember.addConfigurationOption("external_host_name", | 1073 | configMember.addConfigurationOption("external_host_name", |
1099 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, | 1074 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, |
1100 | "External Host Name", "127.0.0.1", false); | 1075 | "External Host Name", "127.0.0.1", false); |
@@ -1165,9 +1140,6 @@ namespace OpenSim.Framework | |||
1165 | case "internal_ip_port": | 1140 | case "internal_ip_port": |
1166 | m_internalEndPoint.Port = (int) configuration_result; | 1141 | m_internalEndPoint.Port = (int) configuration_result; |
1167 | break; | 1142 | break; |
1168 | case "allow_alternate_ports": | ||
1169 | m_allow_alternate_ports = (bool) configuration_result; | ||
1170 | break; | ||
1171 | case "external_host_name": | 1143 | case "external_host_name": |
1172 | if ((string) configuration_result != "SYSTEMIP") | 1144 | if ((string) configuration_result != "SYSTEMIP") |
1173 | { | 1145 | { |
@@ -1244,7 +1216,6 @@ namespace OpenSim.Framework | |||
1244 | if ((RemotingAddress != null) && !RemotingAddress.Equals("")) | 1216 | if ((RemotingAddress != null) && !RemotingAddress.Equals("")) |
1245 | args["remoting_address"] = OSD.FromString(RemotingAddress); | 1217 | args["remoting_address"] = OSD.FromString(RemotingAddress); |
1246 | args["remoting_port"] = OSD.FromString(RemotingPort.ToString()); | 1218 | args["remoting_port"] = OSD.FromString(RemotingPort.ToString()); |
1247 | args["allow_alt_ports"] = OSD.FromBoolean(m_allow_alternate_ports); | ||
1248 | if ((proxyUrl != null) && !proxyUrl.Equals("")) | 1219 | if ((proxyUrl != null) && !proxyUrl.Equals("")) |
1249 | args["proxy_url"] = OSD.FromString(proxyUrl); | 1220 | args["proxy_url"] = OSD.FromString(proxyUrl); |
1250 | if (RegionType != String.Empty) | 1221 | if (RegionType != String.Empty) |
@@ -1299,8 +1270,6 @@ namespace OpenSim.Framework | |||
1299 | RemotingAddress = args["remoting_address"].AsString(); | 1270 | RemotingAddress = args["remoting_address"].AsString(); |
1300 | if (args["remoting_port"] != null) | 1271 | if (args["remoting_port"] != null) |
1301 | UInt32.TryParse(args["remoting_port"].AsString(), out m_remotingPort); | 1272 | UInt32.TryParse(args["remoting_port"].AsString(), out m_remotingPort); |
1302 | if (args["allow_alt_ports"] != null) | ||
1303 | m_allow_alternate_ports = args["allow_alt_ports"].AsBoolean(); | ||
1304 | if (args["proxy_url"] != null) | 1273 | if (args["proxy_url"] != null) |
1305 | proxyUrl = args["proxy_url"].AsString(); | 1274 | proxyUrl = args["proxy_url"].AsString(); |
1306 | if (args["region_type"] != null) | 1275 | if (args["region_type"] != null) |
@@ -1338,7 +1307,8 @@ namespace OpenSim.Framework | |||
1338 | kvp["http_port"] = HttpPort.ToString(); | 1307 | kvp["http_port"] = HttpPort.ToString(); |
1339 | kvp["internal_ip_address"] = InternalEndPoint.Address.ToString(); | 1308 | kvp["internal_ip_address"] = InternalEndPoint.Address.ToString(); |
1340 | kvp["internal_port"] = InternalEndPoint.Port.ToString(); | 1309 | kvp["internal_port"] = InternalEndPoint.Port.ToString(); |
1341 | kvp["alternate_ports"] = m_allow_alternate_ports.ToString(); | 1310 | // TODO: Remove in next major version |
1311 | kvp["alternate_ports"] = "False"; | ||
1342 | kvp["server_uri"] = ServerURI; | 1312 | kvp["server_uri"] = ServerURI; |
1343 | 1313 | ||
1344 | return kvp; | 1314 | return kvp; |