WutheringWaves/KcpSharp/KcpSendSegmentStats.cs

21 lines
513 B
C#
Raw Normal View History

2024-02-07 21:41:39 +00:00
namespace KcpSharp
{
internal readonly struct KcpSendSegmentStats
{
public KcpSendSegmentStats(uint resendTimestamp, uint rto, uint fastAck, uint transmitCount)
{
ResendTimestamp = resendTimestamp;
Rto = rto;
FastAck = fastAck;
TransmitCount = transmitCount;
}
public uint ResendTimestamp { get; }
public uint Rto { get; }
public uint FastAck { get; }
public uint TransmitCount { get; }
}
}