diff options
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 78dca09..7cd77db 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -594,9 +594,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
594 | //don't want to be creating a new link to the remote instance every time like we are here | 594 | //don't want to be creating a new link to the remote instance every time like we are here |
595 | bool retValue = false; | 595 | bool retValue = false; |
596 | 596 | ||
597 | checkRegion(regInfo.RemotingAddress, regInfo.RemotingPort); | 597 | |
598 | if (Available) | ||
599 | { | ||
600 | OGS1InterRegionRemoting remObject = (OGS1InterRegionRemoting)Activator.GetObject( | 598 | OGS1InterRegionRemoting remObject = (OGS1InterRegionRemoting)Activator.GetObject( |
601 | typeof(OGS1InterRegionRemoting), | 599 | typeof(OGS1InterRegionRemoting), |
602 | "tcp://" + regInfo.RemotingAddress + | 600 | "tcp://" + regInfo.RemotingAddress + |
@@ -618,7 +616,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
618 | retValue.ToString()); | 616 | retValue.ToString()); |
619 | 617 | ||
620 | return retValue; | 618 | return retValue; |
621 | } | 619 | |
622 | } | 620 | } |
623 | 621 | ||
624 | return false; | 622 | return false; |
@@ -1091,18 +1089,18 @@ namespace OpenSim.Region.Communications.OGS1 | |||
1091 | 1089 | ||
1092 | // helper to see if remote region is up | 1090 | // helper to see if remote region is up |
1093 | bool m_bAvailable = false; | 1091 | bool m_bAvailable = false; |
1094 | int timeOut = 15000; //15 seconds | 1092 | int timeOut = 10; //10 seconds |
1095 | 1093 | ||
1096 | public void checkRegion(string address, uint port) | 1094 | public void CheckRegion(string address, uint port) |
1097 | { | 1095 | { |
1096 | m_bAvailable = false; | ||
1098 | IPAddress ia = null; | 1097 | IPAddress ia = null; |
1099 | IPAddress.TryParse(address, out ia); | 1098 | IPAddress.TryParse(address, out ia); |
1100 | IPEndPoint m_EndPoint = new IPEndPoint(ia, (int)port); | 1099 | IPEndPoint m_EndPoint = new IPEndPoint(ia, (int)port); |
1101 | AsyncCallback ConnectedMethodCallback = new AsyncCallback(ConnectedMethod); | 1100 | AsyncCallback ConnectedMethodCallback = new AsyncCallback(ConnectedMethod); |
1102 | Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); | 1101 | Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); |
1103 | IAsyncResult ar = socket.BeginConnect(m_EndPoint, ConnectedMethodCallback, socket); | 1102 | IAsyncResult ar = socket.BeginConnect(m_EndPoint, ConnectedMethodCallback, socket); |
1104 | ar.AsyncWaitHandle.WaitOne(timeOut, false); | 1103 | ar.AsyncWaitHandle.WaitOne(timeOut*1000, false); |
1105 | socket.Close(); | ||
1106 | } | 1104 | } |
1107 | 1105 | ||
1108 | public bool Available | 1106 | public bool Available |