sharp-chat/SharpChat.SockChat/PacketsS2C/ForceDisconnectS2CPacket.cs

20 lines
544 B
C#
Raw Normal View History

2022-08-30 15:00:58 +00:00
using System;
namespace SharpChat.SockChat.PacketsS2C {
public class ForceDisconnectS2CPacket : ISockChatS2CPacket {
2024-05-14 22:17:25 +00:00
private readonly long Expires;
2022-08-30 15:00:58 +00:00
public ForceDisconnectS2CPacket(DateTimeOffset expires) {
Expires = expires <= DateTimeOffset.UtcNow
? 0 : (expires.Year >= 2100 ? -1 : expires.ToUnixTimeSeconds());
2022-08-30 15:00:58 +00:00
}
public string Pack() {
2024-05-14 22:17:25 +00:00
if(Expires != 0)
return string.Format("9\t1\t{0}", Expires);
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
}
}
}