Added temporary try catch to udpserver while testing something out (will remove later)

afrisby
MW 2007-11-02 14:54:56 +00:00
parent 21e47f8ef0
commit a30866ed45
1 changed files with 7 additions and 1 deletions

View File

@ -118,7 +118,13 @@ namespace OpenSim.Region.ClientStack
int packetEnd = numBytes - 1; int packetEnd = numBytes - 1;
try
{
packet = Packet.BuildPacket(RecvBuffer, ref packetEnd, ZeroBuffer); packet = Packet.BuildPacket(RecvBuffer, ref packetEnd, ZeroBuffer);
}
catch(Exception)
{
}
// do we already have a circuit for this endpoint // do we already have a circuit for this endpoint
uint circuit; uint circuit;