sharp-chat/SharpChat/Packet/ForceDisconnectPacket.cs

26 lines
660 B
C#
Raw Normal View History

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