You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- syntax = "proto2";
- package yl_pb;
-
- //Msg = 1 心跳请求
- message SystemHeartbeatReq {
- }
- //Msg = 2 心跳回应
- message SystemHeartbeatRes {
- }
-
- //Msg = 3 握手请求
- message SystemHandshakeReq {
- optional string Token = 1; //握手加密信息 主要用户客户端切换服务器以及重连
- }
-
- //Msg = 4 握手回应
- message SystemHandshakeRes {
- optional int32 ErrorCode = 1; //0 成功
- }
|