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