aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP
diff options
context:
space:
mode:
authorSean Dague2008-06-03 13:58:54 +0000
committerSean Dague2008-06-03 13:58:54 +0000
commitafd59e862e8c6c289f179526261b312008caf3b3 (patch)
tree9797ffaca0595afed0b79f48e7fbcd490d07b0c5 /OpenSim/Region/ClientStack/LindenUDP
parentFrom: Dong Jun Lan <landj@cn.ibm.com> (diff)
downloadopensim-SC_OLD-afd59e862e8c6c289f179526261b312008caf3b3.zip
opensim-SC_OLD-afd59e862e8c6c289f179526261b312008caf3b3.tar.gz
opensim-SC_OLD-afd59e862e8c6c289f179526261b312008caf3b3.tar.bz2
opensim-SC_OLD-afd59e862e8c6c289f179526261b312008caf3b3.tar.xz
temporarily disable the last bit of code as it prevents startup on
mono. Need to sort that out with DJ shortly.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 7f221ae..fcb611f 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -412,7 +412,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
412 uint IOC_IN = 0x80000000; 412 uint IOC_IN = 0x80000000;
413 uint IOC_VENDOR = 0x18000000; 413 uint IOC_VENDOR = 0x18000000;
414 uint SIO_UDP_CONNRESET = IOC_IN | IOC_VENDOR | 12; 414 uint SIO_UDP_CONNRESET = IOC_IN | IOC_VENDOR | 12;
415 m_socket.IOControl((int)SIO_UDP_CONNRESET, new byte[] { Convert.ToByte(false) }, null); 415 // TODO: this apparently works in .NET but not in Mono, need to sort out the right flags here.
416 // m_socket.IOControl((int)SIO_UDP_CONNRESET, new byte[] { Convert.ToByte(false) }, null);
416 417
417 listenPort = newPort; 418 listenPort = newPort;
418 419