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