mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
21 lines
535 B
C#
21 lines
535 B
C#
namespace EggLink.DanhengServer.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; }
|
|
|
|
|
|
}
|
|
}
|