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;
|
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;
|
||||||
|
|
Loading…
Reference in New Issue