fishbait/ServerProject-DONT-IMPORT-INTO-UNITY/MultiCompiled/Telepathy/TelepathyConfig.cs
2021-04-07 00:49:57 -05:00

25 lines
536 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mirror
{
class TelepathyConfig
{
public bool NoDelay = true;
public int SendTimeout = 5000;
public int ReceiveTimeout = 30000;
public int serverMaxMessageSize = 16 * 1024;
public int serverMaxReceivesPerTick = 10000;
public int serverSendQueueLimitPerConnection = 10000;
public int serverReceiveQueueLimitPerConnection = 10000;
}
}