Added temporary try catch to udpserver while testing something out (will remove later)
parent
21e47f8ef0
commit
a30866ed45
|
@ -118,7 +118,13 @@ namespace OpenSim.Region.ClientStack
|
|||
|
||||
int packetEnd = numBytes - 1;
|
||||
|
||||
packet = Packet.BuildPacket(RecvBuffer, ref packetEnd, ZeroBuffer);
|
||||
try
|
||||
{
|
||||
packet = Packet.BuildPacket(RecvBuffer, ref packetEnd, ZeroBuffer);
|
||||
}
|
||||
catch(Exception)
|
||||
{
|
||||
}
|
||||
|
||||
// do we already have a circuit for this endpoint
|
||||
uint circuit;
|
||||
|
|
Loading…
Reference in New Issue