Hibok
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
421 B

  1. syntax = "proto2";
  2. package yl_pb;
  3. //Msg = 1 心跳请求
  4. message SystemHeartbeatReq {
  5. }
  6. //Msg = 2 心跳回应
  7. message SystemHeartbeatRes {
  8. }
  9. //Msg = 3 握手请求
  10. message SystemHandshakeReq {
  11. optional string Token = 1; //握手加密信息 主要用户客户端切换服务器以及重连
  12. }
  13. //Msg = 4 握手回应
  14. message SystemHandshakeRes {
  15. optional int32 ErrorCode = 1; //0 成功
  16. }