Files
KianaBH3/KcpSharp/Base/KcpSendSegmentStats.cs
2025-06-14 11:15:32 +08:00

17 lines
465 B
C#

namespace KianaBH.KcpSharp.Base;
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; }
}