mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
Added temporary try catch to udpserver while testing something out (will remove later)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user