Fix: TelepathyTransport.GetMaxPacketSize uses the new configurable max size

This commit is contained in:
vis2k 2019-06-04 10:07:24 +02:00
parent fc181cb4ab
commit cb3d3dba72

View File

@ -139,8 +139,7 @@ public override void Shutdown()
public override int GetMaxPacketSize(int channelId)
{
// Telepathy's limit is Array.Length, which is int
return int.MaxValue;
return serverMaxMessageSize;
}
public override string ToString()