aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index 8c40d3e..43bba8b 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -1460,6 +1460,7 @@ namespace OpenSim.Region.Communications.OGS1
1460 AsyncCallback ConnectedMethodCallback = new AsyncCallback(ConnectedMethod); 1460 AsyncCallback ConnectedMethodCallback = new AsyncCallback(ConnectedMethod);
1461 Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); 1461 Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
1462 IAsyncResult ar = socket.BeginConnect(m_EndPoint, ConnectedMethodCallback, socket); 1462 IAsyncResult ar = socket.BeginConnect(m_EndPoint, ConnectedMethodCallback, socket);
1463 System.Threading.Thread.Sleep(500);
1463 ar.AsyncWaitHandle.WaitOne(timeOut*1000, false); 1464 ar.AsyncWaitHandle.WaitOne(timeOut*1000, false);
1464 } 1465 }
1465 1466