sharp-chat/SharpChat/Packet/PongPacket.cs

23 lines
502 B
C#
Raw Normal View History

2022-08-30 15:00:58 +00:00
using System;
using System.Text;
namespace SharpChat.Packet {
public class PongPacket : ServerPacket {
public DateTimeOffset PongTime { get; private set; }
public PongPacket(DateTimeOffset dto) {
PongTime = dto;
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
2023-02-07 15:01:56 +00:00
StringBuilder sb = new();
2022-08-30 15:00:58 +00:00
2023-02-07 14:34:31 +00:00
sb.Append('0');
2022-08-30 15:00:58 +00:00
sb.Append('\t');
sb.Append(PongTime.ToUnixTimeSeconds());
2024-05-10 15:24:43 +00:00
return sb.ToString();
2022-08-30 15:00:58 +00:00
}
}
}