aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorAdam Frisby2009-05-25 01:12:28 +0000
committerAdam Frisby2009-05-25 01:12:28 +0000
commit9023b93e2f9559f485b7872b8640442ecc1f29d9 (patch)
treebc47176d3b3b84a39d7b53eb56bb0b99af48af9e /OpenSim/Framework
parentPrevent group deeded objects from being returned by the group return option (diff)
downloadopensim-SC_OLD-9023b93e2f9559f485b7872b8640442ecc1f29d9.zip
opensim-SC_OLD-9023b93e2f9559f485b7872b8640442ecc1f29d9.tar.gz
opensim-SC_OLD-9023b93e2f9559f485b7872b8640442ecc1f29d9.tar.bz2
opensim-SC_OLD-9023b93e2f9559f485b7872b8640442ecc1f29d9.tar.xz
* Disabled NAT translation support for a little while.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/NetworkUtil.cs32
1 files changed, 24 insertions, 8 deletions
diff --git a/OpenSim/Framework/NetworkUtil.cs b/OpenSim/Framework/NetworkUtil.cs
index eeb514e..e3fb009 100644
--- a/OpenSim/Framework/NetworkUtil.cs
+++ b/OpenSim/Framework/NetworkUtil.cs
@@ -21,11 +21,22 @@ namespace OpenSim.Framework
21 // Logger 21 // Logger
22 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 22 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
23 23
24 private static bool m_disabled = true;
25
26 public static bool Enabled
27 {
28 set { m_disabled = value; }
29 get { return m_disabled; }
30 }
31
24 // IPv4Address, Subnet 32 // IPv4Address, Subnet
25 static readonly Dictionary<IPAddress,IPAddress> m_subnets = new Dictionary<IPAddress, IPAddress>(); 33 static readonly Dictionary<IPAddress,IPAddress> m_subnets = new Dictionary<IPAddress, IPAddress>();
26 34
27 public static IPAddress GetIPFor(IPAddress user, IPAddress simulator) 35 public static IPAddress GetIPFor(IPAddress user, IPAddress simulator)
28 { 36 {
37 if(m_disabled)
38 return simulator;
39
29 // Check if we're accessing localhost. 40 // Check if we're accessing localhost.
30 foreach (IPAddress host in Dns.GetHostAddresses(Dns.GetHostName())) 41 foreach (IPAddress host in Dns.GetHostAddresses(Dns.GetHostName()))
31 { 42 {
@@ -168,10 +179,13 @@ namespace OpenSim.Framework
168 179
169 public static IPAddress GetIPFor(IPEndPoint user, string defaultHostname) 180 public static IPAddress GetIPFor(IPEndPoint user, string defaultHostname)
170 { 181 {
171 // Try subnet matching 182 if (!m_disabled)
172 IPAddress rtn = GetExternalIPFor(user.Address, defaultHostname); 183 {
173 if (rtn != null) 184 // Try subnet matching
174 return rtn; 185 IPAddress rtn = GetExternalIPFor(user.Address, defaultHostname);
186 if (rtn != null)
187 return rtn;
188 }
175 189
176 // Otherwise use the old algorithm 190 // Otherwise use the old algorithm
177 IPAddress ia; 191 IPAddress ia;
@@ -195,10 +209,12 @@ namespace OpenSim.Framework
195 209
196 public static string GetHostFor(IPAddress user, string defaultHostname) 210 public static string GetHostFor(IPAddress user, string defaultHostname)
197 { 211 {
198 IPAddress rtn = GetExternalIPFor(user, defaultHostname); 212 if (!m_disabled)
199 if(rtn != null) 213 {
200 return rtn.ToString(); 214 IPAddress rtn = GetExternalIPFor(user, defaultHostname);
201 215 if (rtn != null)
216 return rtn.ToString();
217 }
202 return defaultHostname; 218 return defaultHostname;
203 } 219 }
204 } 220 }