generated from root/miduo_server
20 lines
569 B
Protocol Buffer
20 lines
569 B
Protocol Buffer
package com.ljsd.jieling.protocols;
|
|
|
|
option optimize_for = SPEED;
|
|
|
|
enum eCommand {
|
|
SYS_EXIT = 50000; //系统登录
|
|
SYS_USER_LOGIN = 50001; //系统推出
|
|
SYS_USER_LOGIN_REPONSE = 50002; //系统登录响应
|
|
}
|
|
|
|
|
|
message PSSysLogin {
|
|
optional string userName = 1; //账号
|
|
optional string password = 2; // 密码
|
|
optional int32 serverId = 3; //服务器Id
|
|
optional int32 errorCode = 4;
|
|
}
|
|
|
|
|