| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- syntax = "proto3";
- package ET;
- // ResponseType NetClient2Main_Login
- message Main2NetClient_Login // IRequest
- {
- int32 RpcId = 1;
- int32 OwnerFiberId = 2;
- string Address = 3;
- string Account = 4; // 账号
- string Password = 5; // 密码
- }
- message NetClient2Main_Login // IResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int64 PlayerId = 4;
- }
- // ResponseType G2C_Ping
- message C2G_Ping // ISessionRequest
- {
- int32 RpcId = 1;
- }
- message G2C_Ping // ISessionResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int64 Time = 4;
- }
- // ResponseType R2C_Login
- message C2R_Login // ISessionRequest
- {
- int32 RpcId = 1;
- string Account = 2; // 帐号
- string Password = 3; // 密码
- }
- message R2C_Login // ISessionResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- string Address = 4;
- int64 Key = 5;
- int64 GateId = 6;
- }
- // ResponseType G2C_LoginGate
- message C2G_LoginGate // ISessionRequest
- {
- int32 RpcId = 1;
- int64 Key = 2; // 帐号
- int64 GateId = 3;
- }
- message G2C_LoginGate // ISessionResponse
- {
- int32 RpcId = 1;
- int32 Error = 2;
- string Message = 3;
- int64 PlayerId = 4;
- }
|