您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
31 行
794 B
31 行
794 B
namespace Unity.Networking.Transport
|
|
{
|
|
public interface INetworkParameter
|
|
{
|
|
}
|
|
|
|
public struct NetworkParameterConstants
|
|
{
|
|
public const int InitialEventQueueSize = 100;
|
|
public const int InvalidConnectionId = -1;
|
|
|
|
public const int DriverDataStreamSize = 64 * 1024;
|
|
public const int ConnectTimeout = 1000;
|
|
public const int MaxConnectAttempts = 60;
|
|
public const int DisconnectTimeout = 30 * 1000;
|
|
|
|
public const int MTU = 1400;
|
|
}
|
|
|
|
public struct NetworkDataStreamParameter : INetworkParameter
|
|
{
|
|
public int size;
|
|
}
|
|
|
|
public struct NetworkConfigParameter : INetworkParameter
|
|
{
|
|
public int connectTimeout;
|
|
public int maxConnectAttempts;
|
|
public int disconnectTimeout;
|
|
}
|
|
}
|