mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
17 lines
465 B
C#
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; }
|
|
} |