-
Notifications
You must be signed in to change notification settings - Fork 673
tcp udp bytes protol
zhujin edited this page Mar 14, 2017
·
1 revision
- 消息结构为NetMessageHead,NetProtoBufMessageBody
- 消息头NetMessageHead结构为
魔法头 short head;
长度 int length;
版本号 byte version;
命令 short cmd;
序列号 int serial;
- 消息体NetProtoBufMessageBody结构为
内容 bytes body;
- 消息结构为NetUdpMessageHead,NetProtoBufMessageBody
- 消息头NetUdpMessageHead结构为
魔法头 short head;
长度 int length;
版本号 byte version;
命令 short cmd;
序列号 int serial;
玩家id long playerId;
玩家会话凭据 int tocken;
- 消息体NetProtoBufMessageBody结构为
内容 bytes body;