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.
2 parents fde71e4 + 46fa369 commit bcba0d2Copy full SHA for bcba0d2
com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs
@@ -1749,7 +1749,7 @@ internal static FixedString128Bytes ErrorToFixedString(int error)
1749
case TransportError.NetworkPacketOverflow:
1750
return "packet is too large for the transport (likely need to increase MTU)";
1751
case TransportError.NetworkSendQueueFull:
1752
- return "send queue full (need to increase 'Max Send Queue Size' parameter)";
+ return "send queue full (need to increase 'Max Packet Queue Size' parameter)";
1753
default:
1754
return FixedString.Format("unexpected error code {0}", error);
1755
}
0 commit comments