We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8890554 commit cba9c51Copy full SHA for cba9c51
com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs
@@ -1806,7 +1806,7 @@ internal static FixedString128Bytes ErrorToFixedString(int error)
1806
case TransportError.NetworkPacketOverflow:
1807
return "packet is too large for the transport (likely need to increase MTU)";
1808
case TransportError.NetworkSendQueueFull:
1809
- return "send queue full (need to increase 'Max Send Queue Size' parameter)";
+ return "send queue full (need to increase 'Max Packet Queue Size' parameter)";
1810
default:
1811
return FixedString.Format("unexpected error code {0}", error);
1812
}
0 commit comments