2022-08-30 15:00:58 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace SharpChat.Packet {
|
|
|
|
|
public class ForceDisconnectPacket : ServerPacket {
|
2024-05-14 22:17:25 +00:00
|
|
|
|
private readonly long Expires;
|
2022-08-30 15:00:58 +00:00
|
|
|
|
|
2024-05-14 22:17:25 +00:00
|
|
|
|
public ForceDisconnectPacket() {}
|
2024-05-10 18:29:48 +00:00
|
|
|
|
|
|
|
|
|
public ForceDisconnectPacket(DateTimeOffset expires) {
|
2024-05-14 22:17:25 +00:00
|
|
|
|
Expires = expires.Year >= 2100 ? -1 : expires.ToUnixTimeSeconds();
|
2022-08-30 15:00:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-05-10 15:24:43 +00:00
|
|
|
|
public override 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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|