aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorAdam Frisby2008-03-05 21:56:14 +0000
committerAdam Frisby2008-03-05 21:56:14 +0000
commit810d2126ea729bc6407899afc5df7c046bcced22 (patch)
treeda081d8961392e3d8d28076e99d9457e125033f5 /OpenSim
parent* Four more warnings bite the dust. (diff)
downloadopensim-SC_OLD-810d2126ea729bc6407899afc5df7c046bcced22.zip
opensim-SC_OLD-810d2126ea729bc6407899afc5df7c046bcced22.tar.gz
opensim-SC_OLD-810d2126ea729bc6407899afc5df7c046bcced22.tar.bz2
opensim-SC_OLD-810d2126ea729bc6407899afc5df7c046bcced22.tar.xz
* Three more warnings are a-gone.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/UDPServer.cs35
-rw-r--r--OpenSim/Region/Physics/OdePlugin/OdePlugin.cs3
2 files changed, 15 insertions, 23 deletions
diff --git a/OpenSim/Region/ClientStack/UDPServer.cs b/OpenSim/Region/ClientStack/UDPServer.cs
index 10a51e5..395037f 100644
--- a/OpenSim/Region/ClientStack/UDPServer.cs
+++ b/OpenSim/Region/ClientStack/UDPServer.cs
@@ -364,33 +364,28 @@ namespace OpenSim.Region.ClientStack
364 public void ServerListener() 364 public void ServerListener()
365 { 365 {
366 uint newPort = listenPort; 366 uint newPort = listenPort;
367 for (uint i = 0; i < 20; i++) 367 m_log.Info("[SERVER]: Opening UDP socket on " + listenIP.ToString() + " " + newPort + ".");// Allow alternate ports: " + Allow_Alternate_Port.ToString());
368 try
368 { 369 {
369 newPort = listenPort + i; 370 ServerIncoming = new IPEndPoint(listenIP, (int)newPort);
370 m_log.Info("[SERVER]: Opening UDP socket on " + listenIP.ToString() + " " + newPort + ".");// Allow alternate ports: " + Allow_Alternate_Port.ToString()); 371 Server = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
371 try 372 Server.Bind(ServerIncoming);
372 { 373 listenPort = newPort;
373 ServerIncoming = new IPEndPoint(listenIP, (int) newPort); 374 }
374 Server = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); 375 catch (Exception ex)
375 Server.Bind(ServerIncoming); 376 {
376 listenPort = newPort; 377 // We are not looking for alternate ports?
377 break; 378 //if (!Allow_Alternate_Port)
378 } 379 throw (ex);
379 catch (Exception ex)
380 {
381 // We are not looking for alternate ports?
382 //if (!Allow_Alternate_Port)
383 throw (ex);
384 380
385 // We are looking for alternate ports! 381 // We are looking for alternate ports!
386 //m_log.Info("[SERVER]: UDP socket on " + listenIP.ToString() + " " + listenPort.ToString() + " is not available, trying next."); 382 //m_log.Info("[SERVER]: UDP socket on " + listenIP.ToString() + " " + listenPort.ToString() + " is not available, trying next.");
387 }
388 } 383 }
389 384
390 m_log.Info("[SERVER]: UDP socket bound, getting ready to listen"); 385 m_log.Info("[SERVER]: UDP socket bound, getting ready to listen");
391 386
392 ipeSender = new IPEndPoint(listenIP, 0); 387 ipeSender = new IPEndPoint(listenIP, 0);
393 epSender = (EndPoint) ipeSender; 388 epSender = (EndPoint)ipeSender;
394 ReceivedData = new AsyncCallback(OnReceivedData); 389 ReceivedData = new AsyncCallback(OnReceivedData);
395 Server.BeginReceiveFrom(RecvBuffer, 0, RecvBuffer.Length, SocketFlags.None, ref epSender, ReceivedData, null); 390 Server.BeginReceiveFrom(RecvBuffer, 0, RecvBuffer.Length, SocketFlags.None, ref epSender, ReceivedData, null);
396 391
diff --git a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
index 563bf44..266cb3d 100644
--- a/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
+++ b/OpenSim/Region/Physics/OdePlugin/OdePlugin.cs
@@ -103,11 +103,8 @@ namespace OpenSim.Region.Physics.OdePlugin
103 private const uint m_regionHeight = Constants.RegionSize; 103 private const uint m_regionHeight = Constants.RegionSize;
104 104
105 private static float ODE_STEPSIZE = 0.020f; 105 private static float ODE_STEPSIZE = 0.020f;
106 private static bool RENDER_FLAG = false;
107 private static float metersInSpace = 29.9f; 106 private static float metersInSpace = 29.9f;
108 107
109 private int interpenetrations_before_disable = 35;
110
111 private IntPtr contactgroup; 108 private IntPtr contactgroup;
112 private IntPtr LandGeom = (IntPtr) 0; 109 private IntPtr LandGeom = (IntPtr) 0;
113 private float[] _heightmap; 110 private float[] _heightmap;