Files
netch/Netch/Models/Settings/KcpConfig.cs
ChsBuffer 2d295a1449 [Features] Json Format Mode
New ModeEditForm
Refactors and Cleanup
Update nuget packages
2021-11-04 17:43:33 +08:00

19 lines
434 B
C#

namespace Netch.Models
{
public class KcpConfig
{
public bool congestion { get; set; } = false;
public int downlinkCapacity { get; set; } = 100;
public int mtu { get; set; } = 1350;
public int readBufferSize { get; set; } = 2;
public int tti { get; set; } = 50;
public int uplinkCapacity { get; set; } = 12;
public int writeBufferSize { get; set; } = 2;
}
}