sharp-chat/SharpChat/Packet/ChannelCreateResponsePacket.cs

23 lines
660 B
C#
Raw Normal View History

2024-05-14 22:17:25 +00:00
using System;
namespace SharpChat.Packet {
public class ChannelCreateResponsePacket : ServerPacket {
private readonly long Timestamp;
private readonly string ChannelName;
public ChannelCreateResponsePacket(string channelName) {
Timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
ChannelName = channelName;
}
public override string Pack() {
2024-05-19 21:02:17 +00:00
return string.Format(
"2\t{0}\t-1\t0\fcrchan\f{1}\t{2}\t10010",
Timestamp,
SockChatUtility.SanitiseChannelName(ChannelName),
SequenceId
);
2024-05-14 22:17:25 +00:00
}
}
}