Skip to content

tcp udp bytes protol

zhujin edited this page Mar 14, 2017 · 1 revision

tcp自定义协议栈

  • 消息结构为NetMessageHead,NetProtoBufMessageBody
  • 消息头NetMessageHead结构为
魔法头 short head;
长度 int length;
版本号 byte version;
命令 short cmd;
序列号 int serial;
  • 消息体NetProtoBufMessageBody结构为
内容 bytes body;

udp自定义协议栈

  • 消息结构为NetUdpMessageHead,NetProtoBufMessageBody
  • 消息头NetUdpMessageHead结构为
魔法头 short head;
长度 int length;
版本号 byte version;
命令 short cmd;
序列号 int serial;
玩家id long playerId;
玩家会话凭据 int tocken;
  • 消息体NetProtoBufMessageBody结构为

内容 bytes body;

Clone this wiki locally