sharp-chat/SharpChat/Packet/ForceDisconnectPacket.cs

22 lines
575 B
C#
Raw Normal View History

2022-08-30 15:00:58 +00:00
using System;
namespace SharpChat.Packet {
public class ForceDisconnectPacket : ServerPacket {
2024-05-10 17:28:52 +00:00
public DateTimeOffset? Expires { get; private set; }
2022-08-30 15:00:58 +00:00
2024-05-10 17:28:52 +00:00
public ForceDisconnectPacket(DateTimeOffset? expires = null) {
Expires = expires;
2022-08-30 15:00:58 +00:00
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
2024-05-10 17:28:52 +00:00
if(Expires.HasValue)
return string.Format(
"9\t1\t{0}",
Expires.Value.Year >= 2100 ? -1 : Expires.Value.ToUnixTimeSeconds()
);
2022-08-30 15:00:58 +00:00
2024-05-10 17:28:52 +00:00
return "9\t0";
2022-08-30 15:00:58 +00:00
}
}
}