|
|
|
@ -19,6 +19,8 @@ public class Encoder : MessageToByteEncoder<BaseMsg>
|
|
|
|
|
protected override void Encode(IChannelHandlerContext context, BaseMsg obj, IByteBuffer output)
|
|
|
|
|
{
|
|
|
|
|
byte[] bytes = obj.ToBytes();
|
|
|
|
|
output.WriteBytes(bytes);
|
|
|
|
|
byte[] result =
|
|
|
|
|
{ 0, bytes[0], bytes[1], bytes[2], bytes[3], bytes[4], bytes[5], bytes[6], bytes[7], 0, 0, 0, 0 };
|
|
|
|
|
output.WriteBytes(result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|