15 lines
427 B
C#
15 lines
427 B
C#
using System;
|
|
|
|
namespace SharpChat.Packet {
|
|
public class ChannelNameFormatErrorPacket : ServerPacket {
|
|
private readonly long Timestamp;
|
|
|
|
public ChannelNameFormatErrorPacket() {
|
|
Timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
|
|
}
|
|
|
|
public override string Pack() {
|
|
return string.Format("2\t{0}\t-1\t1\finchan\t{1}\t10010", Timestamp, SequenceId);
|
|
}
|
|
}
|
|
}
|